nginx同一server配置多个前端工程location访问404问题
【摘要】 1:问题描述 在同一server块中,除了默认的location块外,配置一个前端工程,访问前端页面404,配置如下:
location / { root html; index index.html index.html;
}
location /book { root html/book; index index.html index.html;
}
...
1:问题描述
在同一server块中,除了默认的location块外,配置一个前端工程,访问前端页面404,配置如下:
location / { root html; index index.html index.html;
}
location /book { root html/book; index index.html index.html;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
2:解决方案
location中如果一个特定的url要使用别名,不能用root,alias指定的目录是准确的,root是指定目录的上级目录,改成如下即可
location /book { alias html/book; index index.html index.html;
}
- 1
- 2
- 3
- 4
- 5
文章来源: javalib.blog.csdn.net,作者:陈皮的JavaLib,版权归原作者所有,如需转载,请联系作者。
原文链接:javalib.blog.csdn.net/article/details/105548248
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)