我有一个nginx sites-enabled/default
配置:
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://localhost:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
location ~ /anotherroute {
alias /home/anotherroute/public;
index index.html;
}
}
当我访问http://myipaddress/anotherroute
时,它可以正常工作,但当我http://myipaddress/anotherroute/yetanotherroute
时,它会以403 forbidden
的形式返回。
我该如何解决这个问题?
答案 0 :(得分:0)
您的文件夹filename
可能已存在,请确保您已将文件yetanotherroute
或index.php
否则,您应指定文件名,例如:index.html