我正在尝试在nginx中使用url重定向,但它无法正常工作。当我在浏览器中打开url时,如“/ example”,它会打开beanstalk的默认页面。但是在root标签上,我的应用程序运行正常。
我的nginx配置
server {
listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
location / {
root /opt/myapp;
index sign-in.html;
}
location /example {
alias /opt/example;
index index.html;
}
}
如果您在配置中看到/示例不起作用但/正常工作。它没有显示我检查过日志的错误。所以请帮助它为什么不工作。我不知道豆茎。