tomcat urlrewritefilter 基本url
伙计们,
如何将 http://airizu.com/ 重定向到 http://www.airizu.com/
我们使用 Tomcat 作为 JSP 服务器,一开始我们使用 http://airizu.com 作为 url 的根, 谷歌已经为我的网站建立了索引。
但现在,我们想使用一个 url 根,你知道 http://www.airizu.com/ 。
所以我必须使用一些urlrewrite来重定向url,http代码必须是301。
我研究了很多文章,找到了一个模块: http://code.google.com/p/urlrewritefilter
如何使用此模块执行以下操作网址重定向?
guys
How to redirect http://airizu.com/ to http://www.airizu.com/
we use Tomcat as the JSP server, at the begining, we use http://airizu.com as the urls's root,
and google index my sites aready.
but now, we want to use the one url root, you know http://www.airizu.com/.
so I have to use some urlrewrite to redirect url, the http code must be 301.
I research a lot of articles, and find a module:
http://code.google.com/p/urlrewritefilter
how can use this module to do the url redirect ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在此处安装以下说明:http://code.google.com/p/urlrewritefilter
然后添加看起来像这样的规则:
这会检查用户是否使用正确的域名来访问您的网站。即,用户 gong 到 example.com/blah 将被重定向到 www.example.com/blah
Just install following instructions here: http://code.google.com/p/urlrewritefilter
Then add a rule that looks something like:
This checks that users are using the correct domain name to get to your site. ie, users gong to example.com/blah will be redirected to www.example.com/blah