View Full Version : Redirecting non-www to www on forum links
Quantnet
10-03-2009, 12:15 AM
There are numerous examples on the net and I tried to use some of them. Here is the latest I used
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
HMBeaty
10-03-2009, 12:18 AM
<a href="https://vborg.vbsupport.ru/showthread.php?t=222898" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=222898</a>
Medtech
10-03-2009, 12:18 AM
there is a modification here that will do what you are looking for.
HMBeaty
10-03-2009, 12:19 AM
there is a modification here that will do what you are looking for.
You mean the one I just posted a link to? LOL ;)
Medtech
10-03-2009, 12:20 AM
yeah, we both posted at the same time..lol
HMBeaty
10-03-2009, 12:21 AM
I know, I was just giving you a hard time :D
Quantnet
10-03-2009, 12:39 AM
Thanks for the quick replies, you guys ;)
I knew about that mod but i'm curious why we can't do this in .htaccess since it's more flexible, powerful.
I'm looking for some .htaccess code that will accomplish what the mod does, basically.
HMBeaty
10-03-2009, 12:57 AM
Not sure if this will work, but its what I used to use and its SLIGHTLY different the code you used, but try...
RewriteEngine On
rewritecond %{http_host} ^yourdomain.com
rewriteRule ^(.*) http://www.yourdomain.com/$1 [R=301,L]
Quantnet
10-03-2009, 01:35 AM
I tried that version too and it works for the main page but as soon as i have some subdirectory in the link as in the example in my first post, it does not work.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.