开发者

"Rewrite Action" 404 Server Error! (IIS 7.0 MS URL Re-Write Module)!

开发者 https://www.devze.com 2023-02-12 04:22 出处:网络
Can anyone tell me why this is returning a 404 but works when I redirect it! <rule name=\"Static All Paging\" stopProcessing=\"true\">

Can anyone tell me why this is returning a 404 but works when I redirect it!

<rule name="Static All Paging" stopProcessing="true">
 <match 开发者_JAVA百科url="(.*)page-([0-9]+)$" />
 <action type="Rewrite" url="{R:1}?P={R:2}" appendQueryString="true" />
</rule>


The easiest thing to do is enable Failed Request Tracing and see the end-result of the URL Rewriting http://learn.iis.net/page.aspx/467/using-failed-request-tracing-to-trace-rewrite-rules/

There are a couple of things that could be happening but is hard to know. Are you sure both URLs are running in the Same Application Pool? That could be one reason why redirect works but not rewrite.

0

精彩评论

暂无评论...
验证码 换一张
取 消