我需要重写 URL:
http://www.mydomain.com/test.aspx?pagename=quotes&companycode=324543 到 http://www.mydomain.com/test/quotes/324543
我正在使用 IIS 7.5 和 VS 2008。
我需要在 web.config 中编写规则代码。
我需要重写 URL:
http://www.mydomain.com/test.aspx?pagename=quotes&companycode=324543 到 http://www.mydomain.com/test/quotes/324543
我正在使用 IIS 7.5 和 VS 2008。
我需要在 web.config 中编写规则代码。
在 IIS GUI 中使用向导这里是重定向和相应的重写规则。它可能不是你想要的,但应该给你一个好主意。
<rule name="RedirectUserFriendlyURL1" stopProcessing="true">
<match url="^test\.aspx$" />
<conditions>
<add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
<add input="{QUERY_STRING}" pattern="^pagename=([^=&]+)&companycode=([^=&]+)$" />
</conditions>
<action type="Redirect" url="{C:1}/{C:2}" appendQueryString="false" />
</rule>
<rule name="RewriteUserFriendlyURL1" 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="test.aspx?pagename={R:1}&companycode={R:2}" />
</rule>