主页 > 运维运营 > IIS >
发布时间:2018-08-31 作者:apizl 阅读:531次

上传目录我们肯定是要禁止php的执行的,我们可以这样去限制。

如下使用iis的URL规则工具进行处理:

window下IIS限制某个目录执行PHP

这样所有访问upload目录后缀为php的文件全部禁止访问,

<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="php404" stopProcessing="true">
                    <match url="^upload/(.*).php$" />
                    <action type="AbortRequest" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>


文章由爱资料原创本文地址:https://www.apizl.com/archives/view-140548-1.html,转载请以链接形式标明本文地址!
关键字词: