标签:art 处理 com fas 注释 原创 文章 blog ati
直接访问 .php文件会被被代理服务器的enable-php.conf优先处理,enable-php.conf处理内容如下:
location ~ [^/]\.php(/|$)
{
try_files $uri =404;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
}
因为 .php 直接被代理服务器处理,导致 .php文件没有被代理到正确的服务器上,造成访问时404,解决办法只需要在代理服务器配置将include enable-php.conf注释即可。
# include enable-php.conf;
location / {
proxy_pass http://xxx.xxx.com/;
}
————————————————
版权声明:本文为CSDN博主「weixin_41490929」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_41490929/article/details/93627828
https://www.jb51.net/article/124160.htm
标签:art 处理 com fas 注释 原创 文章 blog ati
原文地址:https://www.cnblogs.com/gaogaoxingxing/p/11698408.html