|
How do I setup redirects with a .htaccess file?
This is a nice simple way to push a browser over to a different page if you've re-organized your web-site. If you moved a page in somedir from page1.htm to page2.htm then the appropriate line to add to your .htaccess file would be: Redirect /somedir/page1.htm http://your.domain/somedir/page2.htm Since you get to specify the full URL to the new page, you can bounce the browser to another server if you want. This also works for directories too. support@mercuryd.com |