我正在尝试使用web.config重写URL,但我不知道它,所以请你帮帮我吗?下面是我的web.config代码:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="xyz" patternSyntax="Wildcard">
<match url="*"/>
<conditions>
<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>
</system.webServer>
</configuration>
我有一个网址:http://www.example.com/?file_name=manage_test
我希望它像:http://www.example.com/manage_test 或 http://www.example.com/manage_test.html
我该如何执行此操作?
提前致谢。
答案 0 :(得分:0)
此重写规则将对您进行重写:
<rule name="xyz" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?file_name={R:0}" />
</rule>
此网址http://www.example.com/manage_test
将被重写为http://www.example.com/?file_name=manage_test
等等。