Nginxは、.phpがURLにある場合にのみPHPファイルをダウンロードします


8

これはよくある質問ですが、同じような問題を抱えている人はまだ見つかりません。.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;
    }
}

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


あなたも投稿できますphp.iniか?
Kraxor 14年

回答:


4

これが時々機能している場合(PHP-FPMが動作していることがわかっている場合)、これはnginxの問題であるとかなり確信しています。PHPのロケーションブロックにあるいくつかのルールに疑いがあります。彼らは可能性が出てダンプするnginxの原因となる特定のURLに破壊すること。

ディレクトリインデックスをキャッチするために必要なのは 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
変更を加えましたが、最初は機能しませんでした。次に、ブラウザのキャッシュを削除しましたが、動作しました。お時間をいただきありがとうございます!:)
Mathew A

1

同じ問題がありましたが、この行も必要でした

include fastcgi.conf;

私も持っていました

location ~* .+ {..}

そして、それが場所の後に行くことを確認する必要がありました ~ \.php$ {..}


1
うーん面白いinclude fastcgi.conf;とほぼ同じですinclude fastcgi_params;が、サイトの構成に手動でfastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;含めるinclude fastcgi_params;代わりに.conf含める一部のユーザーが含まれています。
LiveWireBT 2015年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.