【发布时间】:2017-12-01 07:42:50
【问题描述】:
谁能帮我把这个web.config文件转换成.htaccess
<rules>
<rule name="Rewrite to index" stopProcessing="true">
<match url="^(.+)$" ignoreCase="true" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?permalink={R:1}" />
</rule>
</rules>
【问题讨论】:
标签: php .htaccess url-rewriting web-config