urlrewrite 配置问题

问题描述

大家好,现在使用 urlrewrite, web框架 ssh + freemarker,目前对于 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"><!-- Configuration file for UrlRewriteFilter http://tuckey.org/urlrewrite/--><urlrewrite><!-- <rule> <note> The rule means that requests to /test/status/ will be redirected to /rewrite-status the url will be rewritten. </note> <from>/test/status/</from> <to type="redirect">%{context-path}/rewrite-status</to> </rule> <outbound-rule> <note> The outbound-rule specifies that when response.encodeURL is called (if you are using JSTL c:url) the url /rewrite-status will be rewritten to /test/status/. The above rule and this outbound-rule means that end users should never see the url /rewrite-status only /test/status/ both in thier location bar and in hyperlinks in your pages. </note> <from>/rewrite-status</from> <to>/test/status/</to> </outbound-rule> <rule> <condition name="user-agent">Mozilla/[1-4]</condition> <from>/some/page.html</from> <to>/some/page-for-old-browsers.html</to> </rule> <outbound-rule> <from>^/world.jsp?country=([a-z]+)&amp;city=([a-z]+)$</from> <to>/world/$1/$2</to> </outbound-rule> --> <rule> <from>/some/welcome.jsp</from> <to>/welcome.jsp</to> </rule> <rule> <from>^/qxxx/cache/images/([_0-9a-zA-Z]+)/([_0-9a-zA-Z]+)/([_.0-9a-zA-Z]+)$</from> <to>/qxxx/displayPicture.cache?tName=$1&amp;fName=$2&amp;FLNM=$3</to> </rule><rule> <from>^/qxxx/cache/images/([_0-9a-zA-Z]+)-([_0-9a-zA-Z]+)-([0-9]+)-([0-9]+).JPEG$</from> <to>/qxxx/tflj/displayPicture?errorPicName=Noname.gif&amp;tName=$1&amp;fName=$2&amp;NUMID=$3&amp;SRCID=$4</to> </rule> <rule> <from>^/download/video-([_.0-9a-zA-Zu4E00-u9FA5uF900-uFA2D]+)$</from> <to>/video/$1</to> <set type="content-type">application/force-download</set> </rule> <!-- <outbound-rule> <from>^/([_a-zA-Z]+)/qxxx/displayPicture.cache?tName=([_0-9a-zA-Z]+)&amp;fName=([_0-9a-zA-Z]+)&amp;FLNM=([_0-9a-zA-Z]+)</from> <to>/$1/qxxx/cache/image/$2/$3/$4</to> </outbound-rule>--> <!-- INSTALLATION in your web.xml add... <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> EXAMPLES Redirect one url <rule> <from>/some/old/page.html</from> <to type="redirect">/very/new/page.html</to> </rule> Redirect a directory <rule> <from>/some/olddir/(.*)</from> <to type="redirect">/very/newdir/$1</to> </rule> Clean a url <rule> <from>/products/([0-9]+)</from> <to>/products/index.jsp?product_id=$1</to> </rule> eg, /products/1234 will be passed on to /products/index.jsp?product_id=1234 without the user noticing. Browser detection <rule> <condition name="user-agent">Mozilla/[1-4]</condition> <from>/some/page.html</from> <to>/some/page-for-old-browsers.html</to> </rule> eg, will pass the request for /some/page.html on to /some/page-for-old-browsers.html only for older browsers whose user agent srtings match Mozilla/1, Mozilla/2, Mozilla/3 or Mozilla/4. --></urlrewrite>大家能否讲解一下 配置文件相关 节点说明谢谢

解决方案

<rule> <note> The rule means that requests to /test/status/ will be redirected to /rewrite-status the url will be rewritten. </note> <from>/test/status/</from> <to type="redirect">%{context-path}/rewrite-status</to> </rule> 表示请求的urlnote,说明,注释一样from 就表示你请求的url(伪造的),经过urlrewrite 转化,就变成to里面的url了。to表示真正的url、<outbound-rule> <note> The outbound-rule specifies that when response.encodeURL is called (if you are using JSTL c:url) the url /rewrite-status will be rewritten to /test/status/. The above rule and this outbound-rule means that end users should never see the url /rewrite-status only /test/status/ both in thier location bar and in hyperlinks in your pages. </note> <from>/rewrite-status</from> <to>/test/status/</to> </outbound-rule> 这个表示应答的urlnote说明from 服务器返回的urlto 经过urlrewrite后的。变成伪造的。那么真实的就被隐藏掉了。安全性
解决方案二:
其实很简单,这里面没多少东西,首先web.xml里的过滤器是不可少的org.tuckey.web.filters.urlrewrite.UrlRewriteFilter其次就是rule节点下的from节点和to节点,from是地址栏的url,to是实际请求的地址。就是你配置from匹配规则,想把什么样的url,转到哪个地址上。。最后就是outbound-rule,这里面也是from和to。。就是把你的动态url,比如show.do?id=1&name=2正阳的,可以给你转化成你配置的静态规则俄,比如show_1_2.html。这里给你点参考资料http://www.blogjava.net/suda/archive/2006/12/30/90962.htmlhttp://super2.iteye.com/blog/247328
解决方案三:
这个很简单吧! 讨论过好几次了!http://7454103.iteye.com/blog/476626我的帖子你先看下吧! 需要再深入的话咱再讨论! 关.注中

时间: 2024-10-28 03:15:12

urlrewrite 配置问题的相关文章

urlrewrite.xml 配置-urlrewrite 配置多个参数urlrewrite.xml配置问题

问题描述 urlrewrite 配置多个参数urlrewrite.xml配置问题 <rule> <from>^/mobile/ftl/([a-zA-Z0-9]+)-([a-zA-Z0-9]+)-([a-zA-Z0-9]+)-([a-zA-Z0-9]+)-([a-zA-Z0-9]+)-([a-zA-Z0-9]+)-([a-zA-Z0-9]+)-([a-zA-Z0-9]+)-([a-zA-Z0-9]+)-([a-zA-Z0-9]+)-([a-zA-Z0-9]+)-([a-zA-Z0-9

hbm.xlm配置问题,谢谢大虾们

问题描述 hbm.xlm配置问题,谢谢大虾们 当我实体下面的字段 例如:有个 private String name; 数据表中有字段NAME: hbm.xlm配置中可以不使用column来映射表吗? 求大虾详细分析分析配置文件和数据表映射问题. 解决方案 有个关于DetailsView的问题请教各位大虾

common-VTK-5.10.1版本--配置问题

问题描述 VTK-5.10.1版本--配置问题 各位好: 当我用VS2008打开VTK.SLN后才生成解决方案后,会很如下ERROR: 错误 1 error C2039: "errorLine": 不是"Tcl_Interp"的成员 e:Program FilesVTKvtkCommonvtkTclUtil.cxx 493 vtkCommonTCL 错误 2 error C2039: "errorLine": 不是"Tcl_Interp

一名程序员电脑配置问题

问题描述 一名程序员电脑配置问题 笔记本的配置要求?考虑到以后要向.NET方向发展(最低限度.windows的) 解决方案 要考虑以后那谁也说不准.最先进的电脑10年后也是得淘汰的.何况你说的是"最低限度". 说说现在吧,如果你期望流畅运行目前的Windows 8.1操作系统,以及Visual Studio 2013开发环境.那么你需要一台双核心64位处理器,4GB内存.64GB以上的硬盘. 如果你需要开发比较大的项目,通常你需要在本地运行Android/WP模拟器,虚拟机,以及服务器

goagent-goagen配置问题AttributeError

问题描述 goagen配置问题AttributeError

Oracle透明网关配置问题

问题描述 Oracle透明网关配置问题 本地配置连接Sqlserver没有问题,连接服务器出现问题,以下为截图: 尝试几种写法,均连接不上,initdg4msql.ora 配置如下: HS_FDS_CONNECT_INFO=192.168.1.103:1433//MSSQLSERVER//huaihai57 HS_FDS_TRACE_LEVEL=OFF HS_FDS_RECOVERY_ACCOUNT=sa HS_FDS_RECOVERY_PWD=1 解决方案 声名:转载用透明网关从SQL Ser

j2ee-ftl配置问题,跪求说明

问题描述 ftl配置问题,跪求说明 00 ss:Type="Number">0 SUM(RC[-36]:RC[-1]) =RC[-38]-RC[-1] =IF(RC[-39]=0,0,RC[-1]/RC[-40]) 代表的是什么意思啊?

ftpserver-Apache FTPServer配置问题

问题描述 Apache FTPServer配置问题 按照网上说的,配置完typical-xml里的端口号跟设置明文密码,users.properties里面添加用户.服务器正常启动,可是从客户端登陆一直登陆不上,530显示验证失败...小弟调了一天了求解答啊万分感谢

WCF HTTP 错误 404.3 - Not Found(由于扩展配置问题而无法提供您请求的页面。如果该页面是脚本,请添加处理程序。如果应下载文件,请添加 MIME 映射。)

错误信息: HTTP 错误 404.3 - Not Found 由于扩展配置问题而无法提供您请求的页面.如果该页面是脚本,请添加处理程序.如果应下载文件,请添加 MIME 映射. 最可能的原因: 可能是缺少处理程序映射.默认情况下,静态文件处理程序将处理所有内容. 您要使用的功能可能尚未安装. 没有为网站或应用程序启用相应的 MIME 映射.(警告: 请不要为用户不应下载的 .ASPX 页或 .config 文件等内容创建 MIME 映射.) 如果未安装 ASP.NET. 可尝试的操作: 在 s