How do I rewrite the following specific URL to the specific subdomain: From: http://www.domain.com/support.html To: http://support.domain.com Note: I just want "support.html" to rewrite to a subdomain. I don't want my other files such as "contact.html" or "aboutus.html" to rewrite to subdomains. Any help would greatly be appreciated. Thanks in advance.
try RewriteCond %{HTTP_HOST} www\.domain\.com RewriteRule ^support.html$ http://support.domain.com [R=301,L] Code (markup): that should work for you.