IIS URL重写 - 友好URL:重复Querystring变量

时间:2010-07-08 20:41:44

标签: iis-7 url-rewriting

在我的IIS 7配置中,我创建了友好的URL以进行转换:

http://mysite/restaurant.aspx?Name=SomeName 

http://mysite/SomeName

为此,我有以下规则:

<rule name="RedirectUserFriendlyURL1" enabled="true" stopProcessing="true">
  <match url="^Restaurant\.aspx$" />
    <conditions>
      <add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
      <add input="{QUERY_STRING}" pattern="^Name=([^=&amp;]+)$" />
    </conditions>
  <action type="Redirect" url="{C:1}" appendQueryString="false" />
</rule>

<rule name="RewriteUserFriendlyURL1" enabled="true" stopProcessing="false">
  <match url="^([^/]+)/?$" />
    <conditions>
      <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
      <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
      <add input="{REQUEST_FILENAME}" pattern=".aspx" negate="true" />
    </conditions>
  <action type="Rewrite" url="Restaurant.aspx?Name={R:1}" appendQueryString="false" />
</rule>
  1. 以上看起来是否正确实现我的目标?
  2. 出于某种原因,每次回发我都会得到:

    http://somesite/SomeName?Name=SomeName

  3. 请注意,我已将appendQueryString设置为false。

1 个答案:

答案 0 :(得分:6)

表单回发操作使用基础网址,而不是原始网址。

一个简单的解决方案(我相信服务器端表单操作属性仅在3.5 +中可用):

protected void Page_Load(object sender, EventArgs e)
{
    if ( !String.IsNullOrEmpty(Request.ServerVariables["HTTP_X_ORIGINAL_URL"]) )
    {
        form1.Action = Request.ServerVariables["HTTP_X_ORIGINAL_URL"];
    }
}

http://blogs.iis.net/ruslany/archive/2008/10/23/asp-net-postbacks-and-url-rewriting.aspx