Web Hosting Talk







View Full Version : redirect blah.com to www.blah.com


secured
11-22-2002, 01:45 AM
hi i want for example all entries of http://blah.com in the url to be changed to http://www.blah.com/

btw can you do it so it is http://www.BLAH.com/ for instance.

this is what i entered into my .htaccess file, but i get problems. like it takes for ever to load etc.

RewriteEngine On
RewriteCond %{HTTP_HOST} blah.com [NC]
ReWriteRule .* http://www.BLAH.com/ [L,R]


any help.

secured
11-22-2002, 02:03 AM
found it:

though it doesn't solve upper and lower case issues i had.

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.domain.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R,L]

atr
11-22-2002, 11:44 PM
Can't you do this by setting a ServerName in http.conf? Not sure if it would retain the uppercase, though.

secured
11-22-2002, 11:46 PM
no this is the only method i think. works great.

HostInspect
11-23-2002, 02:47 AM
How about CNAME?

Heh...