1

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

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

其他规则工作得很好。有什么建议么?

谢谢!

4

1 回答 1

0

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

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

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

于 2018-08-08T11:45:22.220 回答