- 在nginx配置文件中的server增加多个location,每个location对应一个目录,比如使用80端口,location / 作为后台访问; location /h5 作为静态文件访问,配置多个站点
location / {
root /usr/share/nginx/html/driving/dist/;
index index.html index.htm;
}
location /h5 {
root /usr/share/nginx/html/driving/h5/;
index index.html index.htm;
}
- 通过这样配置之后,http://xxxx/h5 一直都是提示404,找了好久才搞明白, location如果一个特定的url 要使用别名,不能用root,alias指定的目录是准确的,root是指定目录的上级目录,改动后即可以使用了。
location /h5 {
alias /usr/share/nginx/html/driving/h5/;
index index.html index.htm;
}
版权声明:本文为weixin_44138647原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。