IIS、Apache、Nginx禁止目錄執(zhí)行php腳本方法
1. IIS實(shí)現(xiàn)方法
IIS比較簡(jiǎn)單,按圖中設(shè)置就可以了
2. Apache實(shí)現(xiàn)方法
方法一
<Directory "/var/www/html/attachments">
<Files ~ ".php">
Order allow,deny
Deny from all
</Files>
</Directory>
方法二
<Directory "/var/www/html/attachments">
php_admin_flag engine off
</Directory>
方法三
在.htaccess中寫入
RewriteEngine on RewriteCond % !^$
RewriteRule attachments/(.*).(php)$ - [F]
3. Nginx實(shí)現(xiàn)方法
location ~ /attachments/.*\.php$ {
deny all;
}
關(guān)鍵詞:IIS,Apache,Nginx,php腳本
閱讀本文后您有什么感想? 已有 人給出評(píng)價(jià)!
- 0
- 0
- 0
- 0
- 0
- 0