Nginx 仅当 URL 中包含 .php 时才下载 PHP 文件

Nginx 仅当 URL 中包含 .php 时才下载 PHP 文件

我知道这是一个常见问题,但我没有发现任何人遇到过类似的问题。只要 .php 扩展名不在 URL 中,我就可以提供 PHP 文件。例如:

如果我转到,localhost我将获得我的 index.php 文件。如果我转到,localhost/index.php我将下载该文件。这是我的配置:

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /usr/share/nginx/html;
    index index.php index.html index.htm;

    # Make site accessible from http://localhost/
    server_name localhost;

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        try_files $uri $uri/ =404;
        # Uncomment to enable naxsi on this location
        # include /etc/nginx/naxsi.rules
    }

    # Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
    #location /RequestDenied {
    #   proxy_pass http://127.0.0.1:8080;    
    #}

    error_page 404 /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /usr/share/nginx/html;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    location ~ /\.ht {
        deny all;
    }
}

我对这个问题感到很困惑,想知道是否有人有这方面的经验。

答案1

如果这有时有效(所以你知道 PHP-FPM 已启动并正常工作),我会确信这是一个 nginx 问题。我对你的 PHP 位置块中的几条规则表示怀疑。它们可能某些 URL 被破坏,导致 nginx 转储出去。

只有你需要2 行用于捕获目录索引:

location ~ \.php$ {
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    include fastcgi_params;
}

将该位置恢复到该位置,重新加载 nginx 并查看会发生什么。

如果你需要重写(Wordpress 中的漂亮 URL 等),你需要添加类似这样的内容

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

但仅当标准 URL 正常运行后才可以这样做。

答案2

遇到了同样的问题,但是我也需要这一行

include fastcgi.conf;

我也有

location ~* .+ {..}

并且必须确保它遵循位置~ \.php$ {..}

相关内容