まず、はい、解決策を探しましたが、見つかりません。問題は書き換えコードにあることはわかっていますが、修正するのに十分な知識がありません。私は Debian 9.5 で nginx と php-fpm を使用しています。
php は問題なく読み込まれますが、.html は動作しなくなりました。
server {
# SSL configuration
#
listen 443 ssl default_server;
listen [::]:443 ssl default_server;
root /var/www/example.com;
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
server_name example.com;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri.php;
rewrite ^(.*)$ $uri.php;
}
location /media {
autoindex on;
autoindex_exact_size off;
}
# pass PHP scripts to FastCGI server
#
location ~ \.php$ {
include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
# # With php-cgi (or other tcp sockets):
# #fastcgi_pass 127.0.0.1:9000;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
ご清聴ありがとうございました。またのご連絡をお待ちしております。
編集: 明確にするために、私の意図は、Python ファイルの URL に .php が表示されないようにすることではなく、HTML ファイルが正常に読み込まれるようにすることです。
答え1
このセクション
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri.php;
rewrite ^(.*)$ $uri.php;
}
犯人のようです。rewrite
ディレクティブは単にすべての URI をキャッチし、ファイルに書き換えます.php
。
コメントに従って編集
同様の質問に基づいてここ必要なのは次のようになると思います:
location / {
try_files $uri $uri/ @rules;
}
location @rules {
rewrite ^(.*)$ $1.php last;
}