使用nginx通过index.php路由请求

前端之家收集整理的这篇文章主要介绍了使用nginx通过index.php路由请求前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在将我的服务器从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文件的源代码.作为参考,这是整个配置文件

http://pastebin.com/tyKtM1iB

我知道PHP有效,好像我删除了位置块并使用<?PHP PHPinfo()创建了一个文件;它工作正常. 任何帮助,将不胜感激.

最佳答案
这就是我将所有行为路由到index.PHP的方式,包括子目录请求,HTTP args等.

location / {
    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
原文链接:https://www.f2er.com/nginx/434698.html

猜你在找的Nginx相关文章