
Originally Posted by
Jakob
Thanks alisaparkar,
Looks like a good solution. Do you know if this would also be accepted by Google and the other search engines?
Yes, 301 redirects indicate to google, "Please look over here instead.", which Google happily accepts.
Although the code above works fine I'd suggest a few minor tweaks to make it a bit more efficient.
Code:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteRule .? http://www.example.com%{REQUEST_URI} [L,R=301]
Bookmarks