最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

html - How best to redirect a webpage without using Javascript? - Stack Overflow

programmeradmin1浏览0评论

I have some script in my default page that redirects users to language specific versions of my website depending on the language of the browser. I want to add something that redirects those users who do NOT have Javascript enabled.

Currently I have the following :

<noscript>
  <META HTTP-EQUIV=REFRESH CONTENT="1; URL=en/index.htm">.
</noscript>

But I've read this is not too wise as some search engines frown upon it. How do I do this and keep search engines happy?

I have some script in my default page that redirects users to language specific versions of my website depending on the language of the browser. I want to add something that redirects those users who do NOT have Javascript enabled.

Currently I have the following :

<noscript>
  <META HTTP-EQUIV=REFRESH CONTENT="1; URL=en/index.htm">.
</noscript>

But I've read this is not too wise as some search engines frown upon it. How do I do this and keep search engines happy?

Share Improve this question edited Nov 11, 2009 at 18:18 Andrzej Doyle 104k33 gold badges191 silver badges231 bronze badges asked May 17, 2009 at 19:39 SteveSteve 6,4805 gold badges43 silver badges66 bronze badges 3
  • How are you going to determine the browser language without Javascript? – Lazarus Commented May 17, 2009 at 19:41
  • You can do it with http header sent by the browser. Even if the browser lie on it, javascript is not much more safe, since the way to check and for some historical reasons the result can be faked – Boris Guéry Commented May 17, 2009 at 19:45
  • You can show user a link: Click here ;) – bbmud Commented May 17, 2009 at 19:50
Add a ment  | 

5 Answers 5

Reset to default 7

You should use a .htaccess file to detect the browser's language from the headers (using a regular expression) and then redirect them that way. Doing that is pletely agnostic of the client-side configuration and search engines will handle it properly. There is a ton of information out there on specifically how to acplish this.

It could be done with a server side language by adding the following http header

Location: /en/index

will redirect the user to http://www.example./en/index

You'll need to parse the Accept-Language HTTP header.

You can redirect at server side with 301 HTTP status code too. This is the best way to do it for good SEO. The example is in C# but every plattform has his own method to add headers to the response:

Response.Clear();
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location", "/newfolder/newfilelocation");

The reason to use the 301 status code is that the search engine indexes the new page because it was "Moved permanently" instead of the 302 that was "Moved temporarily".

Why don't you redirect on the server side, by responding with a 302 HTTP status code. I don't know what you have on the server, but all frameworks support it.

发布评论

评论列表(0)

  1. 暂无评论