根据我的研究,如果您将/etc/nginx/conf.d/domain.tld.conf文件附加为以下内容:
location / { try_files $uri $uri.html $uri/ @extensionless-php; index index.html index.htm index.php;}location ~ .php$ { try_files $uri =404;}location @extensionless-php { rewrite ^(.*)$ $1.php last;}然后重新启动nginx并尝试一下。希望这会对您有所帮助!



