I have a demo.domain.com and domain.com
they both show the same information and point to the same folder.
How can I redirect all demo.domain.com visitors to domain.com?
I have a demo.domain.com and domain.com
they both show the same information and point to the same folder.
How can I redirect all demo.domain.com visitors to domain.com?
Assuming the HTTPD is apache:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^demo\.* [NC]
RewriteRule .* http://domain.com/ [L]