Redirect non-www to www
Permalink
hey guys,
i was wondering if it is possible to redirect non-www URL to www URL the C5 way for better SEO.
i tried adding these lines into .htaccess:
#RewriteEngine On
#RewriteCond %{HTTP_HOST} ^mysite.com
#RewriteRule (.*)http://www.mysite.com/$1 [R=301,L]
But it generated error that says:
"This webpage has a redirect loop."
Any solution is gratefully appreciated. Thanks
i was wondering if it is possible to redirect non-www URL to www URL the C5 way for better SEO.
i tried adding these lines into .htaccess:
#RewriteEngine On
#RewriteCond %{HTTP_HOST} ^mysite.com
#RewriteRule (.*)http://www.mysite.com/$1 [R=301,L]
But it generated error that says:
"This webpage has a redirect loop."
Any solution is gratefully appreciated. Thanks
Make sure you have set
...
define('BASE_URL', 'http://www.yourdomain.com');
...
in config/site.php
--ron