2006-12-12
tuckey urlrewrite 3.x的问题
昨天晚上配置myblog的rewrite。发现一个奇怪的问题。由于现在使用的这个pjblog,为了让搜索引擎收录的连接有效。我想把原来的asp连接rewrite到我的新程序上面。所以有这样一条规则。
后来看3.0的manual (http://tuckey.org/urlrewrite/manual/3.0/)才发现原来是这个的问题。
就是那个use-query-string 的问题,默认的是不使用query-string就是把?后面的都忽略了。所以就不能匹配到了。只要在<urlrewrite>里面加一个属性就可以了。

<rule>
<from>^/article.asp\?id=(.*)$</from>
<to type="redirect">/entry/$1.jhtml</to>
</rule>
但是我这样的连接总是匹配不到,只要去掉那个?就可以了。这个正则表达式是没有问题的。/article.asp?id=64是可以匹配的到的。<from>^/article.asp\?id=(.*)$</from>
<to type="redirect">/entry/$1.jhtml</to>
</rule>
后来看3.0的manual (http://tuckey.org/urlrewrite/manual/3.0/)才发现原来是这个的问题。
<urlrewrite> element
The top level element.
| Attribute | Possible Value | Explanation |
|---|---|---|
| default-match-type (optional) | regex (default) | All rules and thier conditions will be processed using the Java Regular Expression engine (unless match-type is specified on a rule). |
| wildcard | All rules and thier conditions will be processed using the Wildcard Expression engine (unless match-type is specified on a rule). | |
| decode-using (optional) | utf8 (default) | When URL is decoded UTF-8 will be used. |
| null | Do not decode. | |
| [encoding] | Any string representing a supported character encoding eg, ISO-8859-1. See Java Charset Object for more info. | |
| use-query-string (optional) | false (default) | The query string will not be appended to the url that the "from" element matches against. |
| true | The query string will be appended to the url that the "from" element matches against. | |
| use-context (optional) | false (default) | The context path will not be added to the url that the "from" element matches against. |
| true | The context path will be added to the url that the "from" element matches against. |
就是那个use-query-string 的问题,默认的是不使用query-string就是把?后面的都忽略了。所以就不能匹配到了。只要在<urlrewrite>里面加一个属性就可以了。
<urlrewrite use-query-string="true">

</urlrewrite>

</urlrewrite>
除经特别注明外,本文章版权归莫多泡泡所有.
署名,非商业用途,保持一致. somebody(莫多)
发表评论
- 浏览: 25933 次
- 性别:

- 来自: 上海

- 详细资料
搜索本博客
最近加入圈子
最新评论
-
关于spring启动的优化的问 ...
我改了,时间没有加快呀
-- by volking -
xstream对xmlnode的属性 ...
在1.2.2中可以用 stream.useAttributeFor(Yupo ...
-- by coolantlai -
Ubuntu Feisty下SSH连接 ...
赞哦,不用sftp时还真没注意这个问题
-- by cookoo -
Ubuntu Feisty下SSH连接 ...
哈哈,刚装了两天还没留意到慢了,看到这里一试果然是
-- by Sam1860 -
tuckey urlrewrite 3.x的 ...
我用了filter的。我debug的时候看到了得到的是中文。 等有时间看看怎么改 ...
-- by somebody






评论排行榜