将一个网站移至另一台服务器后,我遇到了问题。旧的不使用 php-fpm,新的使用,到目前为止,我在迁移其他网站时没有遇到任何与此相关的问题。
这个的问题是它使用奇怪的方式来实现符号链接。查看 .htaccess 中发生了什么:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
index.php 展开 PATH_INFO 获取需要的参数:
$url_elements = explode('/', $_SERVER['PATH_INFO']);
主页工作正常。不起作用的是所有子页面。我得到 File not found. 在前面,和 AH01071: Got error 'Primary script unknown ' 来自日志中的 php-fpm。
我的想法是,它发生是因为 php-fpm 获取一个带有正斜杠的文件名并将其视为路径。
这是 Apache 用来通过 php-fpm 处理 PHP 文件的配置:
# Redirect to local php-fpm if mod_php is not available
<IfModule !mod_php7.c>
<IfModule proxy_fcgi_module>
# Enable http authorization headers
<IfModule setenvif_module>
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
</IfModule>
<FilesMatch ".+\.ph(ar|p|tml)$">
SetHandler "proxy:unix:/run/php/php7.2-fpm.sock|fcgi://localhost"
</FilesMatch>
<FilesMatch ".+\.phps$">
# Deny access to raw php sources by default
# To re-enable it's recommended to enable access to the files
# only in specific virtual host or directory
Require all denied
</FilesMatch>
# Deny access to files without filename (e.g. '.php')
<FilesMatch "^\.ph(ar|p|ps|tml)$">
Require all denied
</FilesMatch>
</IfModule>
</IfModule>
我负担不起重写这个网站的代码来以更好的方式做友好的 URL,因为这个网站只是一个用于 SEO 目的的小页面,公司现在不允许在这上面浪费时间。
如果有人能为我提供这些错误的简单修复,我会非常高兴。
提前谢谢你!
请尝试启用
FollowSymLinks
和AllowOverride All
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
完成后,使用命令重启 apache2 服务
sudo systemctl stop apache2
& sudo systemctl start apache2
我遇到了同样的问题,在投入了很多时间后终于在我的案例中找到了问题
用这个 php.ini 变量解决了:
cgi.fix_pathinfo=1
我希望至少它能帮助别人不要浪费那么多时间。