mojp812 2010-08-14 09:56 采纳率: 100%
浏览 360
已采纳

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">



<!--


The rule means that requests to /test/status/ will be redirected to /rewrite-status
the url will be rewritten.

/test/status/
%{context-path}/rewrite-status

<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-Z\u4E00-\u9FA5\uF900-\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.

-->

大家能否讲解一下 配置文件相关 节点说明
谢谢

  • 写回答

3条回答 默认 最新

  • works001 2010-08-14 10:16
    关注



    The rule means that requests to /test/status/ will be redirected to /rewrite-status
    the url will be rewritten.

    /test/status/
    %{context-path}/rewrite-status

    表示请求的url
    note,说明,注释一样
    from 就表示你请求的url(伪造的),经过urlrewrite 转化,就变成to里面的url了。
    to表示真正的url、



    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> 
    

    这个表示应答的url
    note说明
    from 服务器返回的url
    to 经过urlrewrite后的。变成伪造的。

    那么真实的就被隐藏掉了。安全性

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?
  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛