Redirect http:// to http://www. in htaccess file - Apache Views : 333
Tagged in : Apache
0 0
Send mail
Redirect http:// to http://www. in htaccess file
Use the below code in your htaccess file
RewriteEngine on
RewriteCond %{http_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]


Now it will redirect http://example.com to http://www.example.com
By Nirmala, On - 2010-10-05



    Login to add Comments .