:: How to setup domain name with www redirect to without www in htaccess
+ edit .htaccess file
|
0 |
vi .htaccess |
add these line:
|
0 1 2 |
RewriteEngine On RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L] |
:: Links
+ Google
+ StackOverFlow
