Report this

What is the reason for this report?

Serve WordPress page at subdomain

Posted on February 17, 2014

How can I configure the Nginx Virtual Host to serve www.mydomain.com/status (a WordPress page) when a visitor visits status.mydomain.com? Note: I do not want a rewrite (I want the visitor to see the subdomain url). Also, I would like to rewrite visits to the page (mydomain.com/status) to status.mydomain.com . I have searched for a long time trying to solve this, but have had no luck. 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.

To setup a domain or subdomain you do it the same way, here’s an example of a nginx block to serve a Wordpress site: <br> <br>http://wiki.nginx.org/Wordpress <br> <br>Just replace the server_name directive with your subdomain. <br> <br>For the redirection, in your main domain’s block add something like: <br> <br> <br>location /status { <br> return 301 $scheme://subdomain.domain.com$request_uri; <br>} <br> <br> <br>Contact me if you need any more help ;D <br> <br>http://johnqunknown.me/about/

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.