1.iis实现方法
IIS比较简单,如图设置即可。
2.Apache实现方法
方法一
Directory '/var/www/html/attachments'
Files ~ '.php'
Order allow,deny
Deny from all
/Files
/Directory
方法2
Directory '/var/www/html/attachments'
php_admin_flag engine off
/Directory
方法3
写进去。htaccess
RewriteEngine on RewriteCond % !^$
RewriteRule attachments/(.*).(php)$ - [F]
3.nginx实现方法
location ~ /attachments/.*\.php$ {
deny all;
}