我想重定向任何photo.asp?id=
,这里是=之后的所有内容
到photographe.asp?id=
到=
示例
photo.asp?id=161#photographie-automobile
到
photographe.asp?id=161#photographie-automobile
或
photo.asp?id=230#road-suv
到
photographe.asp?id=230#road-suv
以下代码:
<rule name="SpecificRedirect" stopProcessing="true">
<match url="^photo.asp$" />
<action type="Redirect" url="/photographe.asp$"
redirectType="Permanent" />
</rule>