感谢@rofflox和@toscho为我提供了链接。网状物配置文件不是在我作为WAMP(即Apache)使用localhost时创建的,而是在我转到生产环境时运行IIS时需要的。
所以我创建了一个空白网站。配置文件,并添加了以下内容。
<rewrite>
<rules>
<rule name="Main Rule" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
这帮助我完美地接受了permalinks。