2007-04-10

urlrewrite 的使用方法

关键字: 工作 日记
1、下载:
     下载地址为http://tuckey.org/urlrewrite/#download
2、配置
  将urlrewrite.jar包导入
  然后在web.xml配置过滤器
 
   <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的过滤器配置文件那里需要加点东西
 
  <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
  内容如下:
 
  <?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
  下面是达人写的,参考
 
<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>

评论
liuzhaoq 2008-01-30   回复
[u][/u]
引用
[url][/url][flash=200,200][/flash][align=center][/align]
发表评论

您还没有登录,请登录后发表评论

freeport
搜索本博客
最近加入圈子
存档
最新评论