301重定向代码(ASP,ASP.NET,PHP,apache,IIS,ISAPI_Rewrite)
分类:程序开发 Tags: asp php apache iis rewrite 评论:1 浏览:5848 最近更新时间:2020/12/23 15:45:05
一般跳转有三种,通过asp或php程序,页面中meta和js跳转。
其中,meta和js跳转都属于302跳转,301重定向是网页更改地址后对搜索引擎友好的最好方法,只要不是暂时搬移的情况,都建议使用301来做转址。
以下是一些我整理的代码:
asp:
<% Response.Status="301 Moved Permanently" Response.AddHeader "Location","http://www.yuzhiguo.com" %>
php:
<? Header( "HTTP/1.1 301 Moved Permanently" ) ; Header( "Location: http://www.yuzhiguo.com" ); ?>
asp.net
<script runat="server"> private void Page_Load(object sender, System.EventArgs e) { Response.Status = "301 Moved Permanently"; Response.AddHeader ("Location","http://www.yuzhiguo.com"); } </script>
apache下设置httpd.conf或者站点的.htaccess
Redirect permanent / http://www.yuzhiguo.com/ (将目录下所有内容重定向到http://www.yuzhiguo.com/相应的内容)
Redirect permanent / http://www.***.com/links.php (将网站首页重定向到指定文件:http://www.***.com/links.php)
注意有permanent,没有的话也能重定向,但属于302重定向。
IIS下
1,打开internet信息服务管理器,在欲重定向的网页或目录上按右键
2,选择“重定向到URL”
3,在“重定向到”输入框中输入要跳转到的目标网页的URL地址
4,选中“资源的永久重定向”(切记)
5,最后点击“应用”
使用ISAPI_Rewrite来实现:
(2.X版本文件为httpd.ini,3.X版本文件为.htaccess,文件放在网站根目录生效)
1. 将不带www的顶级域名301重定向到带www的域名
# ISAPI_Rewrite 2.x 版本 [ISAPI_Rewrite] # 3600 = 1 hour CacheClockRate 3600 RepeatLimit 32 RewriteCond Host: ^yuzhiguo\.com$ RewriteRule (.*) http\://www\.yuzhiguo\.com$1 [I,RP]
# ISAPI_Rewrite 3.0 版本 [ISAPI_Rewrite] # 3600 = 1 hour CacheClockRate 3600 RepeatLimit 32 RewriteCond %{HTTP:Host} ^yuzhiguo\.com$ RewriteRule (.*) http\://www\.yuzhiguo\.com$1 [NC,R=301]
2. 不同域名之间的301转向
# ISAPI_Rewrite 2.x 版本 [ISAPI_Rewrite] # 3600 = 1 hour CacheClockRate 3600 RepeatLimit 32 RewriteCond %{HTTP:Host} ^yuzhiguo\.cn$ RewriteRule (.*) http\://www\.yuzhiguo\.com$1 [NC,R=301]
# ISAPI_Rewrite 3.0 版本 [ISAPI_Rewrite] # 3600 = 1 hour CacheClockRate 3600 RepeatLimit 32 RewriteCond %{HTTP:Host} ^www\.yuzhiguo\.cn$ RewriteRule (.*) http\://www\.yuzhiguo\.com$1 [NC,R=301]
3. 将页面301重定向到另外一个页面
# ISAPI_Rewrite 2.x 版本 [ISAPI_Rewrite] # 3600 = 1 hour CacheClockRate 3600 RepeatLimit 32 RewriteRule ^/oldpage.html$ http://yuzhiguo.com/dll.html[I,O,RP,L]
# ISAPI_Rewrite 3.0 版本 [ISAPI_Rewrite] # 3600 = 1 hour CacheClockRate 3600 RepeatLimit 32 RewriteRule ^/oldpage.html$ http://yuzhiguo.com/dll.html[NC,L,R=301,O]
opencart 301跳转
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^yuming.com$ [NC]
RewriteRule ^(.*)$ http://www.yuming.com/$1 [R=301,L]
</IfModule>
-
• asp获取内容中第一张图片和全部图片代码
• win2003空间支持access2007、2010数据库.accdb的方法
• ASP经常用到的代码,比较全,不可不看!
• ASP输出26个英文字母的方法代码
• ASP几种常见分页代码
• IE6中使用first-letter首字符css的特殊写法
• 获取文件的名称和扩展名ASP代码
• 1小时ASP入门,教你简单学会ASP
• asp执行出错,直接忽略错误代码
• ASP判断手机号码输入是否正确正则代码