如何设置nginx.conf的“location /”

时间:2012-03-15 01:47:13

标签: nginx

我有一个nginx服务器,wordpress是/ home / wwwroot /中的一个子字典。 默认域名页是/home/wwwroot/index.html。 如何在访问www.mydomain.com时将默认域页面更改为/ home / wwwroot / wordpress

1 个答案:

答案 0 :(得分:0)

在服务器块中使用root /home/wwwroot/wordpress;

Server {
    root /home/wwwroot/wordpress;
    ...
    location / {
        ...
    }
}