绵阳做网站_绵阳网站建设公司_绵阳网页制作_绵阳网页设计_绵阳网站制作设计公司

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 9092|回复: 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 ^(.*)$ /$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 ^(.*)$ /$1 [L,R=301]
# END WordPress

301重定向的方法不只有这一种,但是我觉得这一种比较简单的,但是它只能用在Linux空间里。。。
绵阳网站建设 | 绵阳做网站 —— 剑锋所指 所向披靡!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|小黑屋|手机版|Archiver|绵阳网站建设

GMT+8, 2024-10-6 05:13 , Processed in 0.041016 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

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