I’ve had some users trying to access a site that is registered as subdomain.example.com with http://www.subdomain.example.com.
is there some sort of .htaccess rule I can add to redirect people that arrive using http://www.subdomain.example.com to subdomain.example.com?
Also, do I have to change DNS stuff?
Sure, use a directive like:
Apache automatically preserves anything after the
/when using theRedirectdirective, 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.comis a distinct hostname that needs its own A (or CNAME) record to point the browser to an appropriate server in the first place.