PHP上传文件夹设置禁止执行脚本文件

<Files ~ “.php”>
Order allow,deny
Deny from all
</Files>
<Files ~ “.html”>
Order allow,deny
Deny from all
</Files>
<Files ~ “.htm”>
Order allow,deny
Deny from all
</Files>

只需要将上面的内容保存为.htaccess文件,并上传到想要禁止执行的文件夹内即可禁止执行.php.html.htm这三种类型的文件。

滚动至顶部