0

Apache では、特定の vhost 内でこのディレクティブDirectoryIndex indexDefaultType application/x-httpd-php使用すると、書き換えることなくインデックス ファイルからファイル拡張子を除外することができました。Nginxでこれを複製するにはどうすればよいですか? これまでのところ、私が見つけることができたのは、正規表現の書き換えソリューションだけです。

4

1 に答える 1

0

.conf ファイルは次のようになります。

server {
server_name example.com;

# Set the docroot directly in the server
root /var/www;

    # Allow index.php or index.html as directory index files
    index index;

    # See if a file or directory was requested first.  If not, try the request as a php file.
    location / {
        try_files $uri $uri/;
    }
}

この行try_files $uriは、バックエンドで拡張子のないファイルを試行する必要があります

于 2012-06-17T23:10:54.510 に答える