What is best practice for developing a full development environment site prior to going live?
I usually just go in and change all the broken image links --- and before with 1.x I avoided using the JCK / or upload image functions of the wysiwign when doing pages to avoid this ---
but now, with my latest site ...
I have hundreds of images to get in place....
and will be at
myhostingsite.com/newsite/index.php
to eventually be multihosted at
just newsite.com
but the newsite.com is their current live site ----
so all my uploaded images will be broken URLs when the site gets ported over from the DEV environment...
there will be lines like
img src="/newsite/images/myimage.gif"
when they should be
img src = "/images/myimage.gif"
So the question is what is the best way to develop a full site locally -- or on a dev server --- then flip one switch and go live!

?
THANKS.