I have the following question,
I want to redirect http:// to http://www with a .HTACCES file I found this article Click but it doens't work when i copy the following code into the .HTACCES file and changed the parameters:
Does anyone have any experience using this?PHP Code:RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.mt-example\.com$ [NC]
RewriteRule ^(.*)$ http://www.mt-example.com/$1 [L,R=301]
Thanks in advance,

