設(shè)置了全站靜態(tài)生成HTML以后,問答專區(qū)地址帶 index.php
我的偽靜態(tài)是IIS規(guī)則
<rule name="OrgPage" stopProcessing="true">
<match url="^ask\.html$" />
<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/ask.html" /></rule>
<