本人是个刚入坑的小白,在网上download了一个网站的源码,在假设的时候遇到了这个问题,整了好久都没整明白 是啥回事- -,有大佬帮忙看下吗?
求好心的大佬帮忙解答一些,感激不尽!!!
IIS 应用池是选的 NET v4.5
这个是网站的web.config文件源代码。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="OrgPage" stopProcessing="true">
<match url="^(.*)$" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="^(.*)$" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>