SEO之重定向
Submitted by hubdog on Thu, 2008-11-27 00:29
301重定向及Global redirect模块
前一阵子为了优化域名,新买了一个sqlitedeveloper的域名,但是很多外部链接是指向的sharpplus.com,所以修改了一下htaccess的文件,增加了域名的重定向。
RewriteCond %{HTTP_HOST} ^sqlitedeveloper\.com$ [NC]
RewriteRule ^(.*)$ http://www.sqlitedeveloper.com/$1 [L,R=301]
RewriteCond %{HTTP_HOST} ^sharpplus\.com$ [NC]
RewriteRule ^(.*)$ http://www.sqlitedeveloper.com/$1 [L,R=301]
RewriteCond %{HTTP_HOST} ^www\.sharpplus\.com [NC]
RewriteRule ^(.*)$ http://www.sqlitedeveloper.com/$1 [L,R=301]