西安做网站_西安网站建设公司_西安网页制作_西安网页设计_西安网站制作设计公司

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 7796|回复: 0

wordpress博客301重定向设置

[复制链接]
发表于 2012-9-21 08:27:34 | 显示全部楼层 |阅读模式
我们在设置固定链接的时候在网站的根目录就会自动生成一个.htaccess文件,这个文件里的内容是

BEGIN WordPress

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /

RewriteRule ^index\.php$ – [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /index.php [L]

</IfModule>

# END WordPress

这里不是将www.it2168.com/index.php转向了www.it2168.com

我们只要用ftp工具打开编辑.htaccess文件在上面的代码中加入以下代码就可以了。
RewriteEngine on
RewriteCond %{http_host} ^it2168.com [NC]
RewriteRule ^(.*)$ http://www.it2168.com/$1 [L,R=301]

加入后的代码如下:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

RewriteEngine on
RewriteCond %{http_host} ^it2168.com [NC]
RewriteRule ^(.*)$ http://www.it2168.com/$1 [L,R=301]
# END WordPress

301重定向的方法不只有这一种,但是我觉得这一种比较简单的,但是它只能用在Linux空间里。。。
西安网站建设 | 西安做网站 —— 剑锋所指 所向披靡!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|小黑屋|手机版|Archiver|西安网站建设

GMT+8, 2024-4-19 16:40 , Processed in 0.043826 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表