Catch-all应该将路径传递到Nginx中的index.php

时间:2019-04-25 12:28:09

标签: php nginx url-rewriting

apache中,我有一个.htaccess,如果找不到文件或文件夹,它将从http://server/api/any/path/i/want重写为http://server/api/index.php

Options -MultiViews

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond $0#%{REQUEST_URI} ([^#]*)#(.*)\1$
    RewriteRule ^.*$ %2index.php [L,NC,QSA]
</IfModule>

我要移至docker,将改用nginx,我想重写rewrite

要注意的是,使用apache.htaccess $_SERVER['REQUEST_URI']/api/any/path/i/want,而不是重写的URL(index.php....)。

我对nginx不太了解,但是从SO的帖子中我发现了一些问题。

site.conf的相关部分

location / {
    root /app/html;
    try_files $uri $uri/ index.html /index.php?$args;
}

location ~ \.php$ {
    try_files $uri @missing;
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    fastcgi_pass php:9000;
    fastcgi_index index.php;
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param PATH_INFO $fastcgi_path_info;
}

location @missing {
    rewrite ^ $scheme://$host/api/index.php permanent;
}

不幸的是,上述配置只会重定向到index.php,据我所知。

我如何在nginx中做同样的事情?

1 个答案:

答案 0 :(得分:3)

这是用于PHP-FPM的典型nginx配置。

server {

 root /app/html;

 location / {
        try_files $uri $uri/ /api/index.php$is_args$args;
  }

  location ~ \.php$ {

    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    fastcgi_pass php:9000;
    fastcgi_index index.php;
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param PATH_INFO $fastcgi_path_info;
   }

} 

请注意与您的示例的区别:

  1. 删除了不必要的@missing定位块。
  2. try_files位置栏中删除了.php语句。
  3. root声明移至服务器块。如果您需要使用不同的词根,请在您的问题中指定该词根。
  4. 唯一的try_files语句包含您的api/index.php的完整路径。

如果请求的路径不存在,它将由您的/app/html/api/index.php脚本作为全局入口点来处理。