使用web.config重写URL

时间:2011-12-22 05:55:24

标签: php url-rewriting web-config

我正在尝试使用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

我该如何执行此操作?

提前致谢。

1 个答案:

答案 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等等。