Quoting Alan Dayley : > Scenario: > (Names have been changed to protect the innocent, assuming there are any.) > > Old server hostname: duck > Old server IP address: 192.168.1.3 > New server hostname: eagle > New server IP address: 192.168.1.9 > > Old document URL (via http): duck/some/important/document.html > New document actual URL (via http): eagle/some/important/document.html > > After the new server is in place any user or link that requests the old > URL, "duck/..." needs to be automatically redirected to "eagle/..." > What do we change to accomplish this? Add the following to duck's Apache configuration : Redirect / http://eagle/ Alternately, you could serve both hostnames from the same box, and set up 2 VirtualHosts (1 for each hostname), using the same DocumentRoot for each. Then all content would be availble via either name. NameVirtualHost *:80 ServerName duck DocumentRoot /var/www/content ServerName eagle DocumentRoot /var/www/content That might not work so well for some CMS systems, which want you to enter a hostname in a config file for certain URL-writing operations. I've also heard that serving the same content via multiple domains can hurt search-engine rankings. But, it'd save you from having to keep 2 boxes up. And... I'm sure there are many other ways to accomplish your goals if either of these 2 ideas have problems. alex --------------------------------------------------- PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us To subscribe, unsubscribe, or to change your mail settings: http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss