码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx一个server配置多个location 404问题解决

时间:2020-04-16 13:11:32      阅读:372      评论:0      收藏:0      [点我收藏+]

标签:color   index   xxx   span   url   local   usr   不能   特定   

配置多个站点404
我选择了配置多个location。

location / {
         root   /data/html/;
         index  index.html index.html;
    }
    location /publicity {
         root /usr/local/nginx/hzcloud-timp-front/;
         index  index.html index.htm;
    }

配置完以后访问。http://xxxx/train 提示404
找了好久才搞明白, location如果一个特定的url 要使用别名,不能用root,alias指定的目录是准确的,root是指定目录的上级目录,改动后即可以使用了

location /publicity {
         alias /usr/local/nginx/hzcloud-timp-front/;
         index  index.html index.htm;
    }

 

Nginx一个server配置多个location 404问题解决

标签:color   index   xxx   span   url   local   usr   不能   特定   

原文地址:https://www.cnblogs.com/shenyixin/p/12712040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!