Report this

What is the reason for this report?

Sub-domain to redirect to a webpage

Posted on May 16, 2014

Hi all,

I’ve been digging around for a while now, but I can’t find anything on this. How would I go about creating a sub-domain for my site to redirect to a webpage?

For example, I want help.mydomain.com (with ‘help’ being the subdomain of course), to redirect users to mydomain.com/support.

Is this possible with DigitalOcean’s DNS or will I have to accomplish this some other way (by configuring Apache for example)?

Thanks!



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

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.

With Apache, you would most likely use a rewrite in an .htaccess file. Google mod_rewrite to find a plethora of examples.

You need to set a DNS record as well as making some changes to your Apache config. First set a CNAME record: <br> <pre> <br>.mydomain.com. IN CNAME @ <br> </pre> <br> <br>Then in you Apache config, set up a rewrite rule: <br> <br><pre> <br><IfModule mod_rewrite.c> <br> RewriteEngine on <br> Options FollowSymLinks <br> RewriteCond %{HTTP_HOST} ^help.mydomain.com <br> RewriteRule ^(.)$ mydomain.com/support [L] <br></IfModule> <br></pre> <br> <br> <br>This will redirect from the sub-domain to the folder. Let us know how it goes!

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.