UrlRewrite
<filter>
<filter-name>UrlRewriteFilter</filter-name>
<filter-class>
org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class>
<init-param>
<param-name>logLevel</param-name>
<param-value>WARN</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>UrlRewriteFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
我用的是webwork
所有在webwork的過濾器配置檔案那裡需要加點東西
Java程式碼
<filter-mapping>
<filter-name>webwork</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
<dispatcher>INCLUDE</dispatcher>
</filter-mapping>
然後是在/WEB-INF/下面新建urlrewrite.xml
內容如下:
Java程式碼
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE urlrewrite PUBLIC "-//tuckey.org//DTD UrlRewrite 2.6//EN"
"http://tuckey.org/res/dtds/urlrewrite2.6.dtd">
<urlrewrite>
<rule>
<from>^/register.jsp$</from>
<to>/register.action</to>
</rule>
</urlrewrite>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE urlrewrite PUBLIC "-//tuckey.org//DTD UrlRewrite 2.6//EN"
"http://tuckey.org/res/dtds/urlrewrite2.6.dtd">
<urlrewrite>
<rule>
<from>^/register.jsp$</from>
<to>/register.action</to>
</rule>
</urlrewrite>
表示訪問register.jsp的時候實際上訪問的是register.action
下面是達人寫的,參考
Java程式碼
<rule>
<note>homepage blog username like http://blog.csdn.net/pigo</note>
<from>/u/([a-zA-Z0-9]+)/?$</from>
<to>/user/main.jsp?username=$1</to>
</rule>
<rule>
<note>homepage blog username like http://blog.csdn.net/pigo/rss.xml</note>
<from>/u/([a-zA-Z0-9]+)/rss.xml$</from>
<to>/user/rss.jsp?username=$1</to>
</rule>
<rule>
<note> blog catgory http://blog.csdn.net/pigo/category/42406.html</note>
<from>/u/([a-zA-Z0-9]+)/category/([a-zA-Z0-9]+).html</from>
<to>/user/cat.jsp?username=$1&catno=$2</to>
</rule>
<rule>
<note> blog catgory rss http://blog.csdn.net/pigo/category/42406.xml</note>
<from>/u/([a-zA-Z0-9]+)/category/([a-zA-Z0-9]+).xml</from>
<to>/user/catrss.jsp?username=$1&catno=$2</to>
</rule>
<rule>
<note> blog photo catgory http://blog.csdn.net/pigo/photo/42406.html</note>
<from>/u/([a-zA-Z0-9]+)/photo/([a-zA-Z0-9]+).html</from>
<to>/user/photo.jsp?username=$1&catno=$2</to>
</rule>
<rule>
<note>blog issue http://blog.csdn.net/pigo/archive/2006/03/23/783904.html</note>
<from>/u/([a-zA-Z0-9]+)/archive/([0-9]+)/([0-9]+)/([0-9]+)/([a-zA-Z0-9]+).html</from>
<to>/user/issue.jsp?username=$1&blogno=$5</to>
</rule>
<rule>
<note>blogarchive by month http://blog.csdn.net/pigo/archive/2005/08.html </note>
<from>/u/([a-zA-Z0-9]+)/archive/([0-9]+)/([0-9]+).html</from>
<to>/user/archivelist.jsp?username=$1&year=$2&month=$3</to>
</rule>
<rule>
<note>blogapi by user http://blog.csdn.net/pigo/blogapi.html </note>
<from>/u/([a-zA-Z0-9]+)/blogapi.html</from>
<to>/blogapi/?username=$1</to>
</rule>
<rule>
<note>blogadmin by user http://blog.csdn.net/pigo/blogadmin.html </note>
<from>/u/([a-zA-Z0-9]+)/blogadmin.html</from>
<to>/admin/index.jsp?username=$1</to>
</rule>
相關文章
- URLRewrite 講解
- OpenShift新增URLRewrite重寫支援
- javaweb中應用urlrewrite技術JavaWeb
- urlrewrite偽靜態匹配問題
- struts2 + urlrewrite 整合注意事項
- Apache偽靜態html(URLRewrite)設定法ApacheHTML
- Apache中URLRewrite技術的實現Apache
- UrlReWrite(Url重寫或偽靜態)完美示例原始碼原始碼
- urlrewrite-------解決大型WEB系統URL暴露安全問題Web
- Java UrlRewrite 實現網站URL重寫過程實錄Java網站
- nginx + tomcat 叢集配置詳解, 實現負載均衡 URLRewrite Session複製NginxTomcat負載Session