web-dev-qa-db-ja.com

Nginxは、.phpがURLにある場合にのみ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;
    }
}

私はこの問題にかなり混乱しており、この問題に経験がある人がいるかどうか疑問に思っています。

8
Mathew A

これが時々機能する場合(つまり、PHP-FPMが稼働していることを知っている場合)、これはnginxの問題であると思います。あなたのPHPロケーションブロックにあるいくつかのルールに疑いがあります。これらはmight特定のURLで破損しているため、nginxがダンプアウトします。

ディレクトリインデックスをキャッチするためのneed 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が機能するようになったら、それを行ってください。

4
Oli

これと同じ問題があったが、この行も必要だった

include fastcgi.conf;

私も持っていました

location ~* .+ {..}

そして、それが場所~ \.php$ {..}の後に行くことを確認しなければなりませんでした

1
sqram