SEO Skills
1. What is SEO SEO on wiki SEO on baidu 2. Skills (1) Keywords in url, but not much http://kbs.kimbs.cn/blog/list/post/30/title/using-ajax/ – it’s right, but too long http://kbs.kimbs.cn/blog/using-ajax/ – it’s the answer (2) Keywords in head 3. 403/404/500 error pages 4. ajax : as few as [...]
Prevent Hotlinking
1. Default image http://static.kimbs.cn/logo.png 2. Create apache .htaccess RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ [NC] RewriteCond %{HTTP_REFERER} !kimbs.cn [NC] RewriteRule .*.(gif|jpg|png|bmp|swf|jpeg)$ http://static.kimbs.cn/logo.png [R,NC,L] 3. Place .htaccess Put it under the image folder: static.kimbs.cn/img/.htaccess but not the top folder: static.kimbs.cn/
301 Redirect for Url SEO
Let’s make the example of this site : 1. www.kimbs.cn 2. kimbs.cn/ 3. www.kimbs.cn/index.html 4. www.kimbs.cn/index.php 5. kimbs.cn/index.php They are all the same in fact. We now redirect all of them to http://kimbs.cn in order to raise the PR(PageRange). In .htaccess : # url canonicalization RewriteCond %{HTTP_HOST} ^www.kimbs.cn [NC] RewriteRule ^(.*)$ http://kimbs.cn/$1 [L,R=301] Easy, isn’t it? [...]