View Full Version : Redirect if url doesn't have "www"[solved]
DrewM
08-25-2006, 10:49 AM
Does any one now a code so that when I on my website it will if the url doesn't have "www" in front of it, it will redirect to the url with "www"?
Put this in you .htaccess
replace yoursite.com with.. yep. you know the drill
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.yoursite\.com [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301]
</IfModule>
DrewM
08-25-2006, 11:08 AM
thank you!
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.