我的nginx配置如下:
location = / {
root /var/www/home/dist;
try_files $uri $uri/index.html $uri =404;
}
location ^~ /home/ {
alias /var/www/home/dist/;
}
我希望代理规则如下:
https://example/,https://example/home,https://example/home/index.html都可以显示index.html
页面
但是当我从其他页面访问索引页面时,nginx总是返回301并将斜杠附加到链接。
http://example/home/index.html/
有人有好主意吗?