Tuesday, February 10, 2015

write way to handle non-www to www migration in apache

add below lines in vhost conf:

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

No comments:

Post a Comment