Re: domain redirect question
One thing to note is that it will probably be easiest to manage this if you do two redirections. The first is on the original domain name redirecting traffic to the equivalent URL on the new domain, as speed suggested:
RewriteEngine On
RewriteRule (.*) http://www.surgicaltechnology.com/$1 [R=301,L]
Then on the new domain, do the individual redirects for the common changed URLs. This way, if some URLs are missed or changes are needed, you won't have to go searching through the config files for both domains to track down a redirect. Users and search engines would be redirected twice, but they are generally tolerant of three to four redirects before an error is assumed.
__________________
The best way to learn anything, is to question everything.
|