网站301重定向怎么做
操作方法
- 01
网页地址的重定向是指当使用者浏览某个网址是,将他导向另一个网址的技术。常常用在一串很长的网址转成较短的网址上面。 301重定向是在搜索引擎优化中最常用的操作,可以帮助我们转移域名的权重。301代表永久性跳转,301重定向是网页更改地址后对搜索引擎友好的最好方法,只要不是暂时转移的情况,都建议作301.下面几种常用的方法: 1 apache服务器实现301重定向 在apache中,有个很重要的文件.htaccess,通过它的设置可以实现很多强大的功能,301重定向便是其中之一。 redirect permant/index.php http://www.domain.com/index.php? go=category_6(将网页index.php重定向到http://www.domain.com/index.php? go=category_6) 通过合理的配置重定向参数中的正则表达式,可以实现更复杂的匹配 2 php下的301重定向 <html> <head> <title> HTTP/1.1 301 Moved Permanently </title> <? Header ("HTTP/1.1 301 Moved Permanently"); Header ("Location:www.domain.com"); ?> </head> <body> HTTP/1.1 301 Moved Permanently </body> </html> 3 asp下的301重定向 <%@ Language=VBSscript %> <% Response.Status="301 Moved Permanently" Response.AddHeader"Location","http://www.admain.com" %> 4 asp.net下的301重定向 <script runat="server"> private void Page_Load(object sender,System.Eventargs e) { Response.Status="301 Moved Permanently"; Response.AddHeader"Location","http://www.admain.com"; } </script> 图袋哈哈网站整理!