欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

php_flag engine off 有大用 有大大用

1. 使用.htaccess 文件限制 在要限制php执行的目录下,创建.htaccess文件,加入内容
php_flag engine off
2. 使用apache的配置文件httpd.conf 在相关的虚拟主机段,加入
<Directory /www/htdocs/path>
php_admin_flag engine off
</Directory>

注意:此处配置要使用绝对路径,经测试相对路径是无效的。


来自 https://blog.csdn.net/snihcel/article/details/21008245



一个 .htacess 的例子 

# Turn off all options we don't need.

Options None

Options +FollowSymLinks


# Set the catch-all handler to prevent scripts from being executed.

SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006

<Files *>

  # Override the handler again if we're run later in the evaluation list.

  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003

</Files>


# If we know how to do it safely, disable the PHP engine entirely.

<IfModule mod_php5.c>

  php_flag engine off

</IfModule>




普通分类: