如何允许 nginx 将 php 代码解析为特定目录中的 .htm 扩展名的文件?
我需要这个,因为我从 apache 迁移过来,更改所有文件扩展名会很令人头痛。
谢谢。
答案1
此代码片段来自默认的 nginx.conf,替换为.php
即可使用。.htm
location ...
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}