urlrewritefilter没有重定向

时间:2013-02-13 19:55:06

标签: java url-rewriting xml-parsing tuckey-urlrewrite-filter

我正在尝试使用urlrewritefilter实现看似非常简单的重定向,如下所示,但它不是重定向。

<rule> 
<from>/?industry_id=22</from> 
<to type="permanent-redirect">/industry/22/publishing</to> 
</rule> 

其他规则工作正常。有什么建议?

谢谢!

1 个答案:

答案 0 :(得分:0)

我认为问题在于您的“发件人”被解释为正则表达式。尝试转义特殊字符,例如:

<rule>
  <from>/\?industry_id\=22</from>
  <to type="permanent-redirect">/industry/22/publishing</to>
</rule>

并且让我们知道它是否有效! :)