本文主要是介绍nginx 配置访问二级目录,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
现在线上有一个网站正在跑着http://www.test.com,要加一个网址http://www.test.com/temp/访问的的是/workspace/test/temp/Views/Index/temp.html
可以这样配置
server {
listen 80;server_name www.test.com;
location / {
root /workspace/test;
index index.html index.htm;
}
location /temp {
alias /workspace/test/temp;
index Index.html;
try_files $uri @rewriteweb;
}
location @rewriteweb {
rewrite ^/temp/(.*)$ /temp/Views/Index/temp.html last;
}
}
这篇关于nginx 配置访问二级目录的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!