Question
Sub-domain to redirect to a webpage
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
*.mydomain.com. IN CNAME @
<IfModule mod_rewrite.c>
RewriteEngine on
Options FollowSymLinks
RewriteCond %{HTTP_HOST} ^help.mydomain.com
RewriteRule ^(.*)$ mydomain.com/support [L]
</IfModule>
Tried this but am getting redirected back to the main domain, please help.
P.S: Am looking to create a sub domain that’d redirect to an external URL.