使用Prettyfaces重定向首页301

时间:2015-03-27 08:19:22

标签: jsf prettyfaces

我使用jsf 2.2& prettyfaces-jsf 2-3.3.3并且有/pages/index.xhtml页。

我尝试从头版重定向到另一个:

<rewrite match="/" url="http://somesite.net" redirect="301" />

当然,所有页面都被重定向。重定向只有首页的正确方法是什么?

1 个答案:

答案 0 :(得分:1)

match属性是正则表达式。所以你应该尝试这样的事情:

<rewrite match="^/$" url="http://somesite.net" redirect="301" />