How to redirect domain without www into www
How to redirect domain without www into www
Dec 01If you want all your visitors shall access your website with a URL like www.domain.com and not without www, use the following apache rewrite rule for redirecting them. Just create a .htaccess script and put it under your root folder.
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]

