ASP.NET 映射-web.config 中用 rewrite 映射

作者:vkvi 来源:ITPOW(原创) 日期:2022-5-27

<system.webServer>
	<rewrite>
		<rules>
			<rule name="Rewrite to article.aspx">
				<match url="article.htm"/>
				<action type="Rewrite" url="article.aspx"/>
			</rule>
		</rules>
	</rewrite>
</system.webServer>

如上,与 IIS 中配置一样。QueryString 也会带过去,即:article.htm?id=1 等效于 article.aspx?id=1。


相关文章