SEO www redirects in htaccess (code included)
How about this to help improve SEO.
Will require hand editting to enable correct rule and domain name.
I have this running my my site without problem.
Needs to be the first rewrite rule in the list.
:)
Needs to be the first rewrite rule in the list.
# redirect all to http://www.example.com/...
#
RewriteCond %{HTTP_HOST} ^example.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
#
# redirect http://www.example.com/... to http://example.com/...
#
# RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
# RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
:)
| Bernard from nearby-an-airport Associate 6544 posts registered on Sep. 12 2003 | Nick, i don't understand how this help SEO. Can you explain please? |
NickR![]() from West Yorkshire, UK Member 327 posts registered on Aug. 17 2006 | Because they are different urls and google considers it duplicate cotent, which google gives a penatly to. Usually not an issue, but this prevents it happening at all. ----- Nick |
Rate this page
Posted by NickR on Oct. 19 2007, commented by NickR on Oct. 20 2007, (popular)
