By digitaldev
Hi,
I have product.com and company.com
I would love to figure out how to tell both the DNS and Nginx to redirect product.com to a folder inside the company.com domain.
Ideally all these permutations
http://product.com
https://product.com
http://www.product.com
https://www.product.com
Redirect the user to a subfolder inside of company.com at
Please let me know
What DNS records I would need for product.com, and compnay.com
What Nginx rule(s) I would need for product.com, and compnay.com
Thank you!
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!
Accepted Answer
Hi @digitaldev,
Using DNS for a HTTP redirection is not possible with just DNS. There are companies providing DNS forwarding though.
As for the Nginx rules, now that’s possible.
You can server_name which supports suffix matches using .mydomain.com syntax:
server {
server_name .mydomain.com;
rewrite ^ http://www.adifferentdomain.com$request_uri? permanent;
}
or on any version 0.9.1 or higher:
server {
server_name .mydomain.com;
return 301 http://www.adifferentdomain.com$request_uri;
}
Regards. KDSys
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.