济宁SEO常会碰到这样的情况,其他网站链接你的站点时,会用下面的链接:
www.xusoft09.cn
xusoft09.cn/
www.example.om/index.html
xusoft09.cn/index.html
而这样导致:你站点主域名的pr值分散到其他几个URLs了。
如果你用301重定向把其他三个URL转到
www.xusoft09.cn
PR也就集中在主域名:www.xusoft09.cn 了。
301重定向具体办法:
迄今为止,能够对302重定向具备优异处理能力的只有Google。也就是说,在网站使用302重定向命令将其它域名指向主域时,只有Google会把其它域名的链接成绩计入主域,而其它搜索引擎只会把链接成绩向多个域名分摊,从而削弱主站的链接总量。既然作为网站排名关键因素之一的外链数量受到了影响,网站排名降低也是很自然的事情了。
综上所述,在众多重定向技术中,301永久性重定向是最为安全的一种途径,也是极为理想的一款解决方案。
对于正确实施301重定向,有这样几个方法可供大家参考:
1.在.htaccess文件中增加301重定向指令
采用“mod_rewrite”技术,形如:
RewriteEngine on
RewriteRule ^(.*)$ http://xusoft09.cn/$1 [R=301,L]
2.适用于使用Unix网络服务器的用户
通过此指令通知搜索引擎的spider你的站点文件不在此地址下。这是较为常用的办法。
形如:Redirect 301 / http://xusoft09.cn/
3.在服务器软件的系统管理员配置区完成301重定向
适用于使用Window网络服务器的用户
4.绑定/本地DNS
如果具有对本地DNS记录进行编辑修改的权限,则只要添加一个记录就可以解决此问题。若无此权限,则可要求网站托管服务商对DNS服务器进行相应设置。
DNS服务器的设置
若要将blog.williamlong.info指向xusoft09.cn,则只需在DNS服务中应增加一个别名记录,可写成:blog IN CNAME xusoft09.cn。
如需配置大量的虚拟域名,则可写成:* IN CNAME xusoft09.cn.
这样就可将所有未设置的以williamlong.info结尾的记录全部重定向到xusoft09.cn上。
5.用ASP/PHP实现301重定向:
ASP:
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://xusoft09.cn/"
Response.End
PHP:
header("HTTP/1.1 301 Moved Permanently");
header("Location:http://xusoft09.cn/");
exit();
seowhy.com的.htaccess
"
.htaccess是什么
- 子目录中的指令会覆盖更高级目录或者主服务器配置文件中的指令。
- .htaccess必须以ASCII模式上传,最好将其权限设置为644。
Unix、Linux系统或者是任何版本的Apache Web服务器都是支持.htaccess的,但是有的主机服务商可能不允许你自定义自己的.htaccess文件。国内的大多数虚拟主机就没有这个功能。我所知道的提供这个功能的有康盛世纪(就是Discuz的论坛服务商)。
启用.htaccess,需要修改httpd.conf,启用AllowOverride,并可以用AllowOverride限制特定命令的使用。如果需要使用.htaccess以外的其他文件名,可以用AccessFileName指令来改变。例如,需要使用.config ,则可以在服务器配置文件中按以下方法配置:AccessFileName .config 。
笼统地说,.htaccess可以帮我们实现包括:文件夹密码保护、用户自动重定向、自定义错误页面、改变你的文件扩展名、封禁特定IP地址的用户、只允许特定IP地址的用户、禁止目录列表,以及使用其他文件作为index文件等一些功能。
工作原理和使用方法
.htaccess文件(或者"分布式配置文件")提供了针对每个目录改变配置的方法,即在一个特定的目录中放置一个包含指令的文件,其中的指令作用于此目录及其所有子目录。
说明:
如果需要使用.htaccess以外的其他文件名,可以用AccessFileName指令来改变。例如,需要使用.config ,则可以在服务器配置文件中按以下方法配置:
AccessFileName .config
通常,.htaccess文件使用的配置语法和主配置文件一样。AllowOverride指令按类别决定了.htaccess文件中哪些指令才是有效的。如果一个指令允许在.htaccess中使用,那么在本手册的说明中,此指令会有一个覆盖项段,其中说明了为使此指令生效而必须在AllowOverride指令中设置的值。
例如,本手册对AddDefaultCharset指令的阐述表明此指令可以用于.htaccess文件中(见"作用域"项),而覆盖项一行是FileInfo ,那么为了使.htaccess中的此指令有效,则至少要设置 AllowOverride FileInfo 。
例子:
作用域 server config, virtual host, directory, .htaccess
覆盖项 FileInfo
##
# if you want to use mod_rewrite, set this 'On'
RewriteEngine On
# the path to your site installation
RewriteBase /
# Maintenance Section - Uncomment the lines below according to your need
# Write below your client IP address (e.g.: 127.0.0.1)
# if you need to keep your web access during maintenance
#RewriteCond %{REMOTE_ADDR} !^127.0.0.1$
# Choose your way of closing the access to PMF:
# a. you can simply forbid access (HTTP 403 Error)
#RewriteRule ^(.*)$ underMaintenance.htm [F,L]
# b. return the user an explanation
#RewriteRule ^(.*)$ underMaintenance.htm [L]
# url canonicalization
RewriteCond %{http_host} ^seowhy.com [NC]
RewriteRule ^(.*)$ http://www.seowhy.com/$1 [L,R=301]
# show all categories
RewriteCond %{REQUEST_URI} showcat.html$ [NC]
RewriteRule ^(.*)$ index.php?action=show [L,QSA]
# the search page
RewriteCond %{REQUEST_URI} search.html$ [NC]
RewriteRule ^(.*)$ index.php?action=search [L,QSA]
# the add content page
RewriteCond %{REQUEST_URI} addcontent.html$ [NC]
RewriteRule ^(.*)$ index.php?action=add [L,QSA]
# the ask question page
RewriteCond %{REQUEST_URI} ask.html$ [NC]
RewriteRule ^(.*)$ index.php?action=ask [L,QSA]
# the open questions page
RewriteCond %{REQUEST_URI} open.html$ [NC]
RewriteRule ^(.*)$ index.php?action=open [L,QSA]
# the help page
RewriteCond %{REQUEST_URI} help.html$ [NC]
RewriteRule ^(.*)$ index.php?action=help [L,QSA]
# the contact page
RewriteCond %{REQUEST_URI} contact.html$ [NC]
RewriteRule ^(.*)$ index.php?action=contact [L,QSA]
# a page with a record
RewriteCond %{REQUEST_URI} ([0-9]+)_([0-9]+)_([a-z-]+).html$ [NC]
RewriteRule ^(.*)_(.*)_(.*).html$ index.php?action=artikel&cat=$1&id=$2&artlang=$3 [L,QSA]
# a category page
RewriteCond %{REQUEST_URI} category([0-9]+).html$ [NC]
RewriteRule ^category(.*).html$ index.php?action=show&cat=$1 [L,QSA]
# a category page with page count
RewriteCond %{REQUEST_URI} category([0-9]+)_([0-9]+).html$ [NC]
RewriteRule ^category(.*)_(.*).html$ index.php?action=show&cat=$1&seite=$2 [L,QSA]
# start page
RewriteRule index.html$ index.php [PT]
# sitemap
RewriteCond %{REQUEST_URI} sitemap-([a-zA-Z0-9漩周遌*)_([a-z-]+).html$ [NC]
RewriteRule ^sitemap-(.*)_(.*).html$ index.php?action=sitemap&letter=$1&lang=$2 [L,QSA]
# a solution id page
RewriteCond %{REQUEST_URI} solution_id_([0-9]+).html$ [NC]
RewriteRule ^solution_id_(.*).html$ index.php?solution_id=$1 [L,QSA]
# 404 page
ErrorDocument 404 /404.html
参考链接:http://www.seogroup.com.cn/SEOyanjiuzhongxin/sousuoyinqingyouhua/1275035161.html
上一篇文章: 百度收录与降权规则-实验室内部资料 下一篇文章: 301跳转PR拦截确认实验 |