| How can I automatically redirect a query entered in a browser without the "www." to my domain with the "www." in front? |
|
|
|
| Written by Administrator |
| Thursday, 09 October 2008 14:09 |
|
You just need to add this at the end of the .htaccess file under the /web on your FTP: RewriteEngine on RewriteCond %{HTTP_HOST} ^[^.]*.[^.]*$ RewriteRule (.*) http://www.%{HTTP_HOST}/$1 [R,L] |








