如何为ASP网站设置重写规则?

时间:2019-01-15 12:16:13

标签: url-rewriting web-config rules

我想重定向任何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>

0 个答案:

没有答案