我正在将我的服务器从Apache迁移到Nginx并拥有这个非常简单的.htaccess规则:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.PHP [QSA,L]
它背后的想法是将每个请求都指向前端控制器(index.PHP).我正在尝试用Nginx做同样的事情.我使用在线转换器来制作这个Nginx位置块:
location / {
if (!-e $request_filename){
rewrite ^(.*)$/index.PHP break;
}
}
但是当我将它添加到我的网站的配置时,Nginx只是下载PHP文件的源代码.作为参考,这是整个配置文件:
我知道PHP有效,好像我删除了位置块并使用<?PHP PHPinfo()创建了一个文件;它工作正常. 任何帮助,将不胜感激.
最佳答案
这就是我将所有行为路由到index.PHP的方式,包括子目录请求,HTTP args等.
原文链接:https://www.f2er.com/nginx/434698.htmllocation / {
try_files $uri $uri/ /index.PHP?$args; #if doesn't exist,send it to index.PHP
}
location ~ \.PHP${
include fastcgi_params;
fastcgi_intercept_errors on;
# By all means use a different server for the fcgi processes if you need to
fastcgi_pass 127.0.0.1:9000;
}
例如,这些被发送到index.PHP:
http://foo.bar/something/
http://foo.bar/something/?something=1
虽然这些直接转到文件
http://foo.bar/someotherPHP.PHP
http://foo.bar/assets/someimg.jpg