这么做的原因:html文件里嵌入了php代码,但是文件名还是.html,需要将html文件交由php处理。
PS:apache和php跑在fastcgi方式下。
首先修改apache将html请求转给php处理:
虚拟主机添加配置
<FilesMatch \.html$> SetHandler "proxy:unix:/tmp/php-cgi-56.sock|fcgi://localhost" </FilesMatch>
重启apache测试。
访问网站报错 access deny
查apache虚拟主机错误日志发现:
AH01071: Got error 'Access to the script '/www/wwwroot/www.xxx.com/index.html'has been denied (see security.limit_extensions)\n'~
应该是php-fpm安全策略导致的。
查 security.limit_extensions 参数发现属于php-fpm.conf中配置
在php-fpm.conf 中[www]池配置段添加一句:
security.limit_extensions = .php .html
重启php-fpm即可。
原创文章,转载请注明。本文链接地址: https://www.rootop.org/pages/4403.html