将过滤器添加到grails中的web.xml

时间:2015-07-30 06:14:45

标签: grails

我必须将urlrewrite fitler添加到我的web.xml

我无法找到任何简单的方法来添加以下过滤器

    <urlrewrite>
        <rule>
            <name>seo redirect</name>
            <condition name="host" operator="notequal">^www.example.com</condition>
            <condition name="host" operator="notequal">^localhost</condition>
            <from>^/(.*)</from>
            <to type="permanent-redirect" last="true">http://www.example.com/$1</to>
        </rule> 
</urlrewrite>

我正在使用2.4.2。我查看http://grails.github.io/grails-doc/2.2.1/ref/Plug-ins/filters.html但不确定是否可以添加此过滤器。

1 个答案:

答案 0 :(得分:0)

您可以随时使用install-templates命令,并在web.xml复制到src/templates/war目录后对其进行编辑。快速而简单。