Bernard Paquesfrom nearby-an-airport Associate, 8408 posts | Nick, i don't understand how this help SEO. Can you explain please? |
| NickR | 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 |
English « Post your requirements here «
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]
:)










