我想要这样做,但是使用 nginx 服务器,我写了以下设置,但登录页面(如 /redmine/login)重定向到 /login
请协助。
location /redmine {
proxy_pass http://localhost:3000/;
proxy_redirect default;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
proxy_cache dhis;
fastcgi_read_timeout 6000;
}
我应该添加什么以便返回的页面中的任何链接都以 /redmine 前缀开头。
答案1
我不是专家,但是这一页建议添加
alias <PATH_TO>/redmine/public;
try_files $uri/index.html $uri.html $uri @app;
到你的location
街区。这有帮助吗?