无法在/WEB-INF/urlrewrite.xml中找到urlrewrite conf文件

时间:2012-10-30 11:01:46

标签: java jsp struts2 servlet-filters tuckey-urlrewrite-filter

我正在实施网址重写功能,我在项目中包含了所有必要的内容,例如urlrewritefilter-4.0.3.jar中的WEB-INF/lib和WEB-INF中的urlrewrite.xml,并在{ {1}}

web.xml

但我收到以下错误,

  

无法在/WEB-INF/urlrewrite.xml找到urlrewrite conf文件

请告诉我如何解决这个问题。

1 个答案:

答案 0 :(得分:1)

您可以更改params中的conf文件。这可以添加到过滤器配置中。

<!-- if you need to the conf file path can be changed
    it is specified as a path relative to the root of your context
    (default /WEB-INF/urlrewrite.xml) -->
    <init-param>
        <param-name>confPath</param-name>
        <param-value>/WEB-INF/urlrewrite.xml</param-value>
    </init-param>