tomcat urlrewritefilter 基本url

发布于 2024-12-09 13:01:07 字数 625 浏览 0 评论 0原文

伙计们,

如何将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

囚我心虐我身 2024-12-16 13:01:07

只需在此处安装以下说明:http://code.google.com/p/urlrewritefilter

然后添加看起来像这样的规则:

<rule>
    <name>Domain Name Check</name>
    <condition name="host" operator="notequal">www.example.com</condition>
    <from>^(.*)
lt;/from>
    <to type="redirect">http://www.example.com/$1</to>
</rule>

这会检查用户是否使用正确的域名来访问您的网站。即,用户 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:

<rule>
    <name>Domain Name Check</name>
    <condition name="host" operator="notequal">www.example.com</condition>
    <from>^(.*)
lt;/from>
    <to type="redirect">http://www.example.com/$1</to>
</rule>

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文