Browser redirects, especially 301 "permanent" redirects, are essential to all good web applications. Regardless of language, browser redirects can:
浏览器重定向,尤其是301个“永久”重定向,对于所有良好的Web应用程序都是必不可少的。 无论使用哪种语言,浏览器重定向都可以:
provide safe URL forwarding to gather GET and POST variables and process them without risking data and processing integrity by a browser refresh 提供安全的URL转发以收集GET和POST变量并处理它们,而不会因浏览器刷新而冒着数据和处理完整性风险的危险 send users and search engine bots to the new location of a page or entire website 将用户和搜索引擎漫游器发送到页面或整个网站的新位置 maintain search engine rank and avoid 404 errors 维持搜索引擎排名并避免404错误Here's the list of browser redirects using various languages:
以下是使用各种语言进行的浏览器重定向的列表:
redirect 301 / http://www.davidwalsh.name/
Response.Status="301 Moved Permanently"; Response.AddHeader("Location","http://www.davidwalsh.name/");
<script runat="server"> private void Page_Load(object sender, System.EventArgs e) { Response.Status = "301 Moved Permanently"; Response.AddHeader("Location","http://www.davidwalsh.name"); } </script>
<CFHEADER statuscode="301" statustext="Moved Permanently"> <CFHEADERname="Location" value="http://www.davidwalsh.name">
//window.location.href = 'http://www.davidwalsh.name/';
response.setStatus(301); response.setHeader("Location", "http://www.davidwalsh.name/"); response.setHeader("Connection", "close");
<meta http-equiv="refresh" content="0;url=http://www.davidwalsh.name/" />
use strict; print "Status: 301 Moved Permanantlyn"; print "Location: http://www.davidwalsh.name"; exit;
header('HTTP/1.1 301 Moved Permanently'); header('Location: http://www.davidwalsh.name');
def old_action headers["Status"] = "301 Moved Permanently" redirect_to "http://www.davidwalsh.name/" end
Do you have any more redirect scripts? If so, post them below!
您还有其他重定向脚本吗? 如果是这样,请将其张贴在下面!
翻译自: https://davidwalsh.name/browser-301-redirects
相关资源:jdk-8u281-windows-x64.exe