最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
apache中如何实现301转向
时间:2022-06-25 00:28:21 编辑:袖梨 来源:一聚教程网
编辑.htaccess的方法。
注意:在设置301重定向之前务必备份相应目录下的.htaccess文件。
1.重定向111com.net到www.111com.net
这种重定向旨在使域名唯一,是网站seo教程必须要做的,后面重定向www.111com.net到111com.net也是出于同样的原因,只是形式不同。
打开.htaccess文件,加入以下规则。(下面的规则是针对主域名的,子域名要修改)
rewriteengine on
rewritecond %{http_host} !^www.111com.net$ [nc]
rewriterule ^(.*)$ http://www.111com.net/$1 [l,r=301]
2.重定向www.111com.net到111com.net
rewriteengine on
rewritecond %{http_host} !^111com.net$ [nc]
rewriterule ^(.*)$ http://111com.net/$1 [l,r=301]
3.重定向old111com.net到www.new111com.net
rewriteengine on
rewritecond %{http_host} !old111com.net$ [nc]
rewriterule ^(.*)$ http://www.new111com.net/$1 [l,r=301]
4.重定向old111com.net to new111com.net
rewriteengine on
rewritebase /
rewritecond %{http_host} !old111com.net$ [nc]
rewriterule ^(.*)$ http://new111com.net/$1 [l,r=301]
5.重定向111com.net/file/file.php教程 到 other111com.net/otherfile/other.php
rewritecond %{http_host} ^www.111com.net$
rewriterule ^file/file.php$ http://www.other111com.net/otherfile/other.php [r=301,l]
相关文章
- 守愿者战力怎么提升-新手战力提升攻略 08-14
- 心动小镇稚趣园第五周任务怎么做-稚趣园第五周任务攻略 08-14
- 心动小镇粉色泡泡位置在哪-6.14-6.20泡泡位置攻略 08-14
- 第五人格纸嫁衣联动什么时候上架-纸嫁衣联动角色及获取方式介绍 08-14
- 华夏绘事录妙笔绘录测试福利怎么领-妙笔绘录测试福利一览 08-14
- 赛尔号巅峰之战宿命永恒活动内容有什么-宿命永恒版本内容介绍 08-14