nginx配置,不带斜杠

时间:2018-11-05 20:06:35

标签: php nginx fpm trailing-slash

我正在尝试配置Nginx。我希望它提供一个php文件:dir/index.php,但请按照我可以通过localhost/dir请求(不带斜杠)访问它而不调用nginx 301 redirect的方式进行操作。我尝试了这里找到的所有解决方案,但是失败了。您能解释一下我如何达到这个目标吗?这是我的配置:

server {
access_log /var/log/nginx/access_log combined;
listen 80 default_server;
listen [::]:80 default_server;

root /var/www/mock-api-server.git;
index index.php;

location ~* \.php$ {
    fastcgi_pass unix:/run/php/php7.2-fpm.sock;
    include         fastcgi_params;
    fastcgi_param   SCRIPT_FILENAME    $document_root$fastcgi_script_name;
    fastcgi_param   SCRIPT_NAME        $fastcgi_script_name;
  }
}

1 个答案:

答案 0 :(得分:0)

您可以使用try_files/index.php附加到URI的末尾。这必须是try_files语句的最后一个参数,因为新URI是在其他位置处理的。有关详细信息,请参见this document

例如:

location / {
    try_files $uri $uri/index.php?$args;
}
location ~* \.php$ {
    try_files $uri =404;
    ...
}

第二条try_files语句应避免使用passing uncontrolled requests to PHP。如果新的URI与真实的PHP文件不对应,则返回404响应。