我正在嘗試將URL重寫映射存儲在單獨的文件中。使用Tuckey將URL重寫映射存儲在單獨的文件中?
我發現使用.NET或Apache的一些答案,但沒有運氣如何做到這一點使用Tuckey在Tomcat中。
有誰知道Tuckey支持此功能?
我正在嘗試將URL重寫映射存儲在單獨的文件中。使用Tuckey將URL重寫映射存儲在單獨的文件中?
我發現使用.NET或Apache的一些答案,但沒有運氣如何做到這一點使用Tuckey在Tomcat中。
有誰知道Tuckey支持此功能?
我看起來像Tuckey支持單獨的urlrewrite.xml。
的urlrewrite.xml路徑可以在過濾器配置進行修改。
它可以在WEB-INF/web.xml文件文件來完成,通過改變confPath參數值的方式:
<filter>
<filter-name>UrlRewriteFilter</filter-name>
<filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class>
<!-- 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>
</filter>
文檔瀏覽:http://urlrewritefilter.googlecode.com/svn/trunk/src/doc/manual/4.0/index.html#filterparams
感謝您的答覆!我實際上從http://urlrewritefilter.googlecode.com/svn/trunk/src/doc/manual/4.0/index.html#mod_rewrite_conf找到答案(向下滾動到最後)。重寫地圖\t不支持 – curious
您應該發佈自己的答案。 http://blog.stackoverflow.com/2011/07/its-ok-to-ask-and-answer-your-own-questions/ – pd40