|
|
Redirect http:// to http://www. in htaccess file - Apache
|
Views : 333
|
|
Tagged in : Apache
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
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 |
|
|
|