Direct non www to www
Comments
-
.htaccess code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301] -
i tried all that and its not working at all can admin tell us the issue why .htaccess its not working
-
i tried all that and its not working at all can admin tell us the issue why .htaccess its not working
Post your complete .htaccess that you are currently using. It's not a support related issue, it's on your end.
-
i tried all that and its not working at all can admin tell us the issue why .htaccess its not working
Post your complete .htaccess that you are currently using. It's not a support related issue, it's on your end.
Can you not also use Softaculus to do that for you?
-
RewriteEngine on
RewriteCond %{HTTP_HOST} ^mydomain.com [NC]
RewriteRule ^(.*)$ http://www.mydomain.com/$1 [L,R=301,NC] -
sorry guys i realized where the problem was. i named my htaccess file without dot before it.
-
sorry guys i realized where the problem was. i named my htaccess file without dot before it.
Good to know that you have finally resolved the issue you were experiencing.