PDA

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"?

jcr
08-25-2006, 10:55 AM
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!