:: How to configure non www to www domain name in htaccess
+ edit .htaccess file
|
0 |
vi .htaccess |
+ add these lines:
|
0 1 2 |
RewriteEngine On RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] |
