如何在PHP-7.1.6中启用,设置" security.limit_extensions",执行.shtml文件?我收到错误"访问脚本' / var / www /..../ file.shtml'已被拒绝(参见security.limit_extensions)" file.shtml如下:
<?php include ("web.php"); ?>
答案 0 :(得分:2)
1 - 找到php配置文件
php-fpm.conf
2 - 编辑security.limit_extensions的行,将.shtml添加到其中。
security.limit_extensions = .php .html .shtml
3 - 如果该行不存在,则只需添加到该文件
4 - 记得重新加载php服务(我建议也重新启动服务器)