在需要限制執(zhí)行程序的目錄創(chuàng)建一個(gè)web.config文件。
web.config的內(nèi)容:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers accessPolicy="Read" />
</system.webServer>
</configuration>
解釋一下這里面要改的地方“<handlers accessPolicy="Read" />”,如果想運(yùn)行腳本, accessPolicy="Read, Script";如果想執(zhí)行accessPolicy="Read, Execute, Script" 。