配置
location / {
root /d/;
index index.html index.htm;
}
访问 http://www.a.com/b/c 我想让 www.a.com/b/ www.a.com/b/c 都是请求 /d/目录,但是现在总是请求 /d/b/ 和 /d/b/c/目录
1
0ZXYDDu796nVCFxq 2019-04-24 12:09:04 +08:00 1
location /b/c/ {
alias /d/; break; index index.html index.htm; } location /b/ { alias /d/; break; index index.html index.htm; } |
2
xiri 2019-04-24 12:50:38 +08:00 via Android
使用 alias 解决啊
|
3
cuixiao603 OP @gstqc 子目录很多 这样一个一个 alias 有点复杂啊
|
4
zong400 2019-04-24 14:57:55 +08:00
location 这里用正则匹配
|