我必须将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但不确定是否可以添加此过滤器。
答案 0 :(得分:0)
您可以随时使用install-templates
命令,并在web.xml
复制到src/templates/war
目录后对其进行编辑。快速而简单。