我有nginx + apache + php配置。 如果在我的浏览器中我写“http://example.com”服务器将我重定向到“http // example.com:8080”(8080是我的Apache端口),但如果我添加斜杠(如example.com/)工作正常。 nginx config:
server {
location / {
proxy_pass http://127.0.0.1:8080;
proxy_read_timeout 600;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_buffering off;
}