10
server {
    listen      80;
    server_name  pwta; 
    root html;

    location /test/{
        alias html/test/;
        autoindex on;
    }
    location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}

この構成は機能します。ただし、location /test/たとえば置き換えられた場合はlocation /testpath/機能しません (入力ファイルが指定されていません)。エイリアス ディレクティブの説明に基づいて、「場所」の部分が削除され、/testpath/info.php結果がhtml/test/info.php.

提案をありがとう。

4

2 に答える 2

11

nginx エイリアス

    server {
    listen      80;
    server_name  pwta;
    index index.html index.php;
    root html;

    location /testpath/ {
        alias html/test/;
    }
    location ~  ^/testpath/(.+\.php)$ { ### This location block was the solution
        alias html/test/;     
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$1;
        include fastcgi_params;
    }
     location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
于 2012-04-11T08:36:35.017 に答える
9

aliasディレクティブとディレクティブはどちらも、root絶対パスで使用するのが最適です。相対パスを使用できますが、それらはprefixnginxのコンパイルに使用される構成オプションに関連しており、通常は必要なものではありません.

nginx -Vこれは、次の値を実行して見つけることで確認できます--prefix=

ログを見てこれを証明すると、「no such file」エラーが見つかります。

于 2013-11-18T19:30:36.107 に答える