#禁止解析php
<Directory "/data/www/data/">
php_admin_flag engine off
<filesmatch "(.*)php">
Order Deny,allow
Deny from all
</filesmatch>
</Directory>

php_admin_flag engine off 禁止解析php

<filesmatch "(.*)php"> 禁止访问/下载等操作
Order Deny,allow
Deny from all
</filesmatch>