URLRewriteFilter隐藏参数

时间:2017-10-13 19:53:51

标签: tuckey-urlrewrite-filter

我有一个看起来像这样的网址:

http://example.com/example/

当我点击网站上的链接时,我希望浏览器显示http://example.com/example/link1,但我的规则显示为http://example.com/example/?p=link1

如何隐藏/?a =

    <rule>
         <from>^/([a-zA-Z0-9_-]+)$</from> 
         <to type="redirect">%{context-path}/?a=$1</to> 
    </rule>

1 个答案:

答案 0 :(得分:0)

根据问题,您只需从标记中删除/?a=,如

即可
<to type="redirect">%{context-path}/$1</to>