如何在Nginx下将php代码运行到.html文件中?

如何在Nginx下将php代码运行到.html文件中?

如何允许 nginx 将 php 代码解析为特定目录中的 .htm 扩展名的文件?

我需要这个,因为我从 apache 迁移过来,更改所有文件扩展名会很令人头痛。

谢谢。

答案1

此代码片段来自默认的 nginx.conf,替换为.php即可使用。.htmlocation ...

# 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;
#} 

相关内容