发新话题
打印

最安全的重定向方法,建议不要使用meta refrsh或asp和js来重定向

最安全的重定向方法,建议不要使用meta refrsh或asp和js来重定向

有很多网站都是同时有多个语言版本,比如各个语言版本在不同的目录,分为en,fr,de,cn等等。一般都是 http://www.domain.com 重定向到 http://www.domain.com/en/index.htm,默认英文为主页。

最安全的做法是在.htaccess中使用 301 redirect 重定向方法。此种方法也似乎是速度最快的。
下面两行是范例,分别将 www.microsoft.comwww.microsoft.com/index.htm 的访问重定向到 http://www.microsoft.com/en/index.htm。这两行要写在.htaccess文件的最开头。

redirect 301 /. http://www.microsoft.com/en/index.htm
redirect 301 /index.htm http://www.microsoft.com/en/index.htm

=====================================
Strategy 2 - Meta Refresh

This is a technique often used by spammers to trick search engines and it should be avoided, unless the page is in a section of your site that isn't spidered.

What the search engine spammers do is to create a page that is optimized for certain keywords and phrases - it usually has no real content. The page is then picked up by some search engines, but when a visitor clicks on the search engine entry, they are redirected to another site, often unrelated.

It's a despicable trick, but thankfully most search engines have filters to detect this. Using this form of SE deception will see a site eventually banned or penalized by major players such as Google.

Strategy 3 - 301 Redirect

A 301 redirect is the most efficient and spider/visitor friendly strategy around for web sites that are hosted on servers running Apache (check with your hosting service if you aren't sure). It's not that hard to implement and it should preserve your search engine rankings for that particular page. If you *have* to change file names or move pages around, it's the safest option.

A 301 redirect is implemented in your .htaccess file.

[ 本贴由 virus2003 于 2004-9-5  21:05 编辑过 ]

TOP

那我怎么判别哪些是中国来的哪些是美国来的?怎么设置?
思想决定命运
支持 (0)  反对 (0)

TOP

提示: 作者被禁止或删除 内容自动屏蔽
支持 (0)  反对 (0)

TOP

.htaccess 是apache支持的

这是详细的使用方法
http://www.cnsw.org/bbs/viewthre ... ;highlight=htaccess
思想决定命运
支持 (0)  反对 (0)

TOP

需要自己判断IP。以前的帖子好象有相关的内容。
引用:
funza 于 2004-9-6 01:32 AM 写道:
那我怎么判别哪些是中国来的哪些是美国来的?怎么设置?
支持 (0)  反对 (0)

TOP

找不到噢,能否给个简单的例子?麻烦你了
思想决定命运
支持 (0)  反对 (0)

TOP

我这里没有,你可以找agazhang看他有没有。
支持 (0)  反对 (0)

TOP

发新话题