 |
1樓
巨大八爪鱼
2024-10-29 22:15
https://zh.purasbar.com/mobile/bar/C%2B%2B 您搜索的C 吧尚未建立,由于该名称含有特殊字符,系统不允许建立。
|
 |
2樓
巨大八爪鱼
2024-10-30 10:21
试了下,估计是nginx的问题。apache那端没有问题。
|
 |
参考下面的文章 https://serverfault.com/questions/459369/disabling-url-decoding-in-nginx-proxy 解决了。原因是nginx里面proxy_pass不能以/结尾。 正确的写法: location /foo { proxy_pass http://localhost:8080; } 错误的写法: location /foo { proxy_pass http://localhost:8080/; }
|