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