886 大佬有话说 : 2 分钟前
伪静态问题-求助
IIS 8
我想把index.php?id=数字301到new.php?id=数字,用下面的规则为什么不行呢,错哪了,求指点。
<rule name="page301" stopProcessing="true">
<match url="^new.php?id=(+)$" />
<action type="Redirect" url="index.php?id={R:1}" redirectType="Permanent" />
</rule>