Sym0n,
in order to redirect www to non-www domain, the code will looks like:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^example\.com$
RewriteRule (.*) http://example.com/$1 [R=301,L]
and:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^example\.com$
RewriteRule (.*) http://example.com/forums/$1 [R=301,L]
detailed description can be found here:
http://www.vbseo.com/f2/how-setup-ww...directs-21501/
a32guy,
there is a compatibility update here:
http://www.vbseo.com/f77/links-not-w...87/#post176693