I want to keep the domains main page open for something else, and keep Ghost or WordPress on /blog. How do I do that?
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.
You can open subdirectory under your html root and place WordPress/Ghost there. By default, html root is located under
/var/www/html
. When you want to serve it from root page, you would install WP/Ghost in that directory/var/www/html
. But if you want to serve it from /blog, like in your case, you would just createblog
folder in/var/www/html
. So you will install WP/Ghost in/var/www/html/blog
.In case in WordPress, after installation verify WordPress & Site addresses, by going to WP-Admin -> Settings -> General. Make sure both are
http://www.example.com/blog
. How to install WordPress on LAMP stack. How to install WordPress on LEMP stack. Note: In case of LAMP stack you’re using Apache, while in case of LEMP you are using nginx (engine x)There is second possibility too. You can use subdomain, e.g.
blog.example.com
. You can saw it very frequently and it is easy to setup. You will create new Virtual Host (or Server Block in case for nginx) and make it point to another folder, e.g.:/var/www/blog.example.com/html
, and you would place there WP/Ghost. Learn more about it from tutorials: How to set up Apache Virtual Hosts. How to set up Nginx Server Blocks. How to set up subdomain. Note: You will use blog.example.com instead of test.com