时间:2023-02-09 08:57:01 | 来源:建站知识
时间:2023-02-09 08:57:01 来源:建站知识
网站进行301重定向对广大站长来说并不陌生,处于SEO、PR值传递等都会对网站设置301跳转,通常我们做301重定向都是修改网站根目录下.htaccess文件,下面就修改.htaccess文件实现301重定向方法为大家进行介绍。RewriteEngine On2、重定向http://www.idcspy.com到http://idcspy.com
RewriteCond %{HTTP_HOST} !^http://www.idcspy.com$ [NC]
RewriteRule ^(.*)$ https://www.idcspy.com/$1 [L,R=301]
RewriteEngine On3、重定向http://olddomain.com 到 http://newdomain.com
RewriteCond %{HTTP_HOST} !^http://idcspy.com$ [NC]
RewriteRule ^(.*)$ http://idcspy.com/$1 [L,R=301]
RewriteEngine On4、重定向http://olddomain.com 到 http://www.newdomain.com
RewriteBase /
RewriteCond %{HTTP_HOST} !http://olddomain.com$ [NC]
RewriteRule ^(.*)$ http://newdomain.com/$1 [L,R=301]
RewriteEngine On5、重定向http://domain.com/file/file.php 到 http://otherdomain.com/otherfile/other.php
RewriteCond %{HTTP_HOST} !http://olddomain.com$ [NC]
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [L,R=301]
RewriteCond %{HTTP_HOST} ^http://www.domain.com$6、在Apache服务器实现301重定向
RewriteRule ^file/file.php$ http://www.otherdomain.com/otherfile/other.php [R=301,L]
Redirect /olddirectory https://www.idcspy.com/newdirectory修改.htaccess文件实现301重定向方法基本上就是这些,用户可以更具自己的需求选择合适的方法进行修改。
关键词:方法,整理,汇总,修改,文件,实现