-
301 Redirection
Hi i have a Canonical issues on the home page what is need to done in order to solve this issue.
http://domain.com/
www.domain.com/
http://www.domain.com/index.html
domain.com/
If anyone try from any of the link from above it should redirect to http://www.domain.com/ how we can do this in html. The redirection should be 301.
Thanks,
Sathish.
-
If you're running apache with mod_rewrite, you could use something like this:
Code:
RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com$ [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com$1 [R=301,L,NE]
... in your httpd.conf file, of course. This should also work from within the .htaccess file.