How to do 301 permanent redirect abc.com to www.abc.com in Drupal 7? Installed Global redirect module but that didn't do it?

Comments

onejam’s picture

It is in your .htaccess file of your Drupal installation. Look for these lines:

 # To redirect all users to access the site WITH the 'www.' prefix,
  # (http://example.com/... will be redirected to http://www.example.com/...)
  # uncomment the following:
  # RewriteCond %{HTTP_HOST} .
  # RewriteCond %{HTTP_HOST} !^www\. [NC]
  # RewriteRule ^ http%{ENV:protossl}://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

uncomment the lines so it looks like:

 # To redirect all users to access the site WITH the 'www.' prefix,
  # (http://example.com/... will be redirected to http://www.example.com/...)
  # uncomment the following:
   RewriteCond %{HTTP_HOST} .
   RewriteCond %{HTTP_HOST} !^www\. [NC]
   RewriteRule ^ http%{ENV:protossl}://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Hope that helps.

-----------------------------------------------------------------
We build engaging websites and intuitive designs that will benefit your business.
Duvien

je1’s picture

Thanks, that worked