Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

redirecting www.subdomain.example.com to subdomain.example.com

I've had some users trying to access a site that is registered as subdomain.example.com with www.subdomain.example.com.

is there some sort of .htaccess rule I can add to redirect people that arrive using www.subdomain.example.com to subdomain.example.com?

Also, do I have to change DNS stuff?

like image 316
tester Avatar asked May 26 '10 01:05

tester


2 Answers

Sure, use a directive like:

<VirtualHost *:80> 
    ServerName www.subdomain.example.com 
    Redirect permanent / http://subdomain.example.com/ 
</VirtualHost> 

Apache automatically preserves anything after the / when using the Redirect directive, which is a common misconception about why this method won't work (when in fact it does).

Also, yes you will need to change DNS records, because www.subdomain.example.com is a distinct hostname that needs its own A (or CNAME) record to point the browser to an appropriate server in the first place.

like image 89
Greg Hewgill Avatar answered Oct 01 '22 18:10

Greg Hewgill


RewriteCond %{HTTP_HOST} ^www.subdomain.domain.com
RewriteRule (.*) http://subdomain.domain.com/$1 [R=301,L]
like image 29
Davinel Avatar answered Oct 01 '22 19:10

Davinel