我正在尝试使用urlrewritefilter实现看似非常简单的重定向,如下所示,但它不是重定向。
<rule>
<from>/?industry_id=22</from>
<to type="permanent-redirect">/industry/22/publishing</to>
</rule>
其他规则工作正常。有什么建议?
谢谢!
答案 0 :(得分:0)
我认为问题在于您的“发件人”被解释为正则表达式。尝试转义特殊字符,例如:
<rule>
<from>/\?industry_id\=22</from>
<to type="permanent-redirect">/industry/22/publishing</to>
</rule>
并且让我们知道它是否有效! :)