vexx
Active member
Hey guys,
Just want to redirect the non-www version of the forum to the www one. Basically, site.com/forums/ to always redirect to www.site.com/forums/
I tried adding this to the .htaccess but with no luck.
or
Tnx in advance for any tips
Just want to redirect the non-www version of the forum to the www one. Basically, site.com/forums/ to always redirect to www.site.com/forums/
I tried adding this to the .htaccess but with no luck.
PHP:
RewriteCond %{HTTP_HOST} ^site.com
RewriteRule (.*) http://www.site.com/$1[R=301,L]
or
PHP:
RewriteCond %{HTTP_HOST} ^site.com/forums
RewriteRule (.*) http://www.site.com/forums/$1 [R=301,L]
Tnx in advance for any tips