There are numerous examples on the net and I tried to use some of them. Here is the latest I used
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^yourdomain\.com$
RewriteRule (.*)$ http://www.yourdomain.com/$1 [R=301,L]
This will redirect mysite.com to
www.mysite.com but if I enter mysite.com/forum/showthread.php?t=1234 it will not return
www.mysite.com/forum/showthread.php?t=1234
vb.org has it working correctly here. I want it always show www in my links.
thanks