1

純粋な HTML の Web サイトを持っています。ここで、PHP ファイルを含むサブディレクトリ (デモ) を追加する必要があります。nginx.conf ファイルに 2 つの場所を設定しました。

server {
    listen          80;
    server_name     mydomain.com;

    access_log      /mydomain.com/access.log;

    location / {
        root        /www;
        index       index.html index.htm;
    }

    location /demo {
        root        /www/demo;
        index       /demo/index.php;
    }                                                                                                                                                                                                       

    location ~ /demo/.*\.php$ {
        root        /www/demo;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;                                                                                                                                                                                                          
        fastcgi_param  SCRIPT_FILENAME  /www/demo$fastcgi_script_name;
        include        fastcgi_params;
    }

    location ~ /\.ht {
        deny         all;
    }
}

mydomain.com は正常に動作するようになりましたが、mydomain.com/demo/ にアクセスしようとすると、エラーが発生し続けます。

No input file specified.

このスクリプトの問題点は何ですか? fastcgi_index のように一部のパスが正しく設定されていないと思います: /demo/index.php である必要がありますか? さまざまな組み合わせを試しましたが、どれも機能しません。どんな助けでも大歓迎です!

4

1 に答える 1

2

変数は完全な URI リクエストであるため、そうfastcgi_paramすべきである可能性があります。ソース/www$fastcgi_script_name

于 2012-08-16T15:14:30.193 に答える