9 March 2019

www to http and http to www Redirection for htaccess code

For www to http Redirection

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTP} off
    RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
    RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
</IfModule>



For http to www Redirection

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]