在Woedpress添加评分插件WP-PostRatings的使用以及汉化版下载地址

在博客上增加评分功能用户体验还是很友好的。Wordpress强大的插件功能基本上你能想到的都可以实现。WP-PostRatings就是一款为worpress设计的评分插件。

主要展示方式可以参考页面下方:

WP-PostRatings

安装方法:下载WP-PostRatings压缩包,解压后用ftp工具上传到wp-plugin文件中

或者在后台找到插件——上传插件,直接将压缩包上传

在后台所有插件中激活WP-PostRatings插件

WP-PostRatings插件主要功能

主要需要在评价设置里面选择自己想要的展示模式以及最高评分,其他的全都默认设置就可以了

设置好 WP-PostRatings 插件后,我们需要把相关的代码加在single.php页面里面

          <?php if(function_exists('the_ratings')) { the_ratings(); } ?>

放在主题文件里去,这样才可以正确显示出投票功能。也可以加到index.php页面里,查找

          <?php while (have_posts()) : the_post(); ?>

加到这段代码下面即可。加入代码后刷新页面即可出现文章评分的功能。

WP-PostRatings有管理评价,评价设置,ratings模板,以及软件卸载四个模块

汉化版的效果:

Post Ratings

汉化版下载地址:WP-PostRatings的使用以及汉化版下载地址

南京如何办理宝宝的出生证以及如何给宝宝上户口

之前一片文章写了南京如何给宝宝办独生子女证,提到办理独生子女证需要先办理宝宝的出生证和户口,这里说一下如何办理宝宝的出生证以及如何给宝宝上户口。

出生证:一般出生证要求在宝宝出生一个月之内办理好,所以准爸妈们最好生之前就想好宝贝的名字哈。

出生证,又称为《出生医学证明》,是依据《中华人民共和国母婴保健法》出具的,证明婴儿出生状态、血亲关系以及申报国籍、户籍取得公民身份的法定说明。

南京市妇幼保健院,准妈妈在入院的时候, 医院会要求家属填写《出生医学证明自填单》再上交夫妇的身份证复印件,宝宝出生后,带着夫妻双方身份证原件及复印件,医院会据此发放《出生医学证明》也就是出生证了。 需要注意的是办理出生证必须是妈妈本人去办理。后续宝宝上户口,办独生子女证,出生证,医保都要用刀这个,如果住院期间来不及办理出生证的话,可以在出院后一个月内再去医院办理。

宝宝如何上户口:

需要材料:宝宝的出生医学证明(出生证),所要上户的户口本,户主的身份证

办理地点:户主户口所在地的派出所上户

宝宝可以跟随父母或者爷爷奶奶,外公外婆的户口。

新生儿常见问题

 

img中Alt标签和Title标签的区别

图片标签中的ALT标签主要是告诉搜索引擎图片的主要信息。Title标签是当鼠标放在图片上时,出现的文字信息。

在firefox和ie8中,当鼠标经过图片时title值会显示,而alt的值不会显示;只有在ie6中,当鼠标经过图片时title和alt的值都会显示。

搜索引擎无法直接读取图片的信息,通过Alt标签可以告诉搜索引擎图片的内容,在alt标签中加入关键词是很好的提升关键词排名的方法,但需要注意的是并不能提高关键词密度。

      alt标签的写法:<img src=”图片的地址” alt=”图片描述”/>

TITLE标签不仅仅可以用于img标签中,同样可以用于网页的标题等。

301跳转和canonical标签有什么区别

    301跳转多用于旧网址在废弃前转向新网址以保证用户的访问,以及旧网址权重的传递。rel=”canonical”的主要作用是对几个完全相同或高度相似的页面,为其指定唯一的URL,同时权重也将集中指向这个URL可以避免多个页面分散权重,同时也避免重复收录。rel=”canonical”的详细用法可参考之前的一篇文章:关于rel=”canonical”标签的用法
通过这两次词的说明我们也可以看出两者的区别,一个是永久跳转,是命令,一个是地址指向,只是建议。
Google对301跳转权重的传递还是有损失的,可参考matt的一个访谈:Matt 谈301跳转对权重传递的影响 
    301,永久重定向。意思是告诉搜索引擎,我改名了,我现在不叫张三,我叫李四,以后所有关于张三的东西,都由李四这个名字来继承。
所以,如果你有100个页面301向了一个,那么,这100个页面,基本就只是相当于一个页面。如果只是重复的内容倒还罢了,但是如果不重复……
而Rel=Canonical则不同。Rel=Canonical本身的页面会被收录。也就是说,张三还是张三、李四还是李四,是两个人,而不是张三改名成为李四。只不过是说,以李四为主,张三为铺,这其中,张三还是在起作用,只不过所有的功劳都属于李四罢了。
301用法:
PHP转向版本
header(“HTTP/1.1 301 Moved Permanently”);
header(“Location: http://你的网址/”);
exit();
ASP转向版本
Response.Status=”301 Moved Permanently”
Response.AddHeader “Location”,”http://你的网址/”
Response.End
canonical用法:
可通过在每个非规范版本的 HTML 网页HEAD的部分中,添加一个link rel=”canonical” 链接来进行指定规范网址。

举例子:如http://www.leranl.com/wordpress-global-translator/

http://www.leranl.com/?p=679

这两个URL指向的是同一个页面,我们可以在http://www.leranl.com/?p=679

这个页面的head标签中,创建 <link> 元素:<link rel=”canonical” href=” http://www.leranl.com/wordpress-global-translator/”/>

301 jump

分享自己整理的常用的中英文RSS地址

英文新闻
http://rss.xinhuanet.com/rss/english.xml

Top Stories
http://rss.news.yahoo.com/rss/topstories

U.S. National
http://rss.news.yahoo.com/rss/us

World
http://rss.news.yahoo.com/rss/world

Asian Tsunami Disaster
http://rss.news.yahoo.com/rss/asiatsunami

Iraq
http://rss.news.yahoo.com/rss/iraq

Mideast Conflict
http://rss.news.yahoo.com/rss/mideast

Politics
http://rss.news.yahoo.com/rss/politics

Elections
http://rss.news.yahoo.com/rss/elections

Business
http://rss.news.yahoo.com/rss/business

Technology
http://rss.news.yahoo.com/rss/tech

Sept. 11 & Terrorism
http://rss.news.yahoo.com/rss/sept11

Sports
http://rss.news.yahoo.com/rss/sports

Entertainment
http://rss.news.yahoo.com/rss/entertainment

Health
http://rss.news.yahoo.com/rss/health

Oddly Enough
http://rss.news.yahoo.com/rss/oddlyenough

Science
http://rss.news.yahoo.com/rss/science

Opinion/Editorial
http://rss.news.yahoo.com/rss/oped

Obituaries
http://rss.news.yahoo.com/rss/obits

Most Emailed
http://rss.news.yahoo.com/rss/mostemailed

Most Viewed
http://rss.news.yahoo.com/rss/mostviewed

Highest Rated
http://rss.news.yahoo.com/rss/highestrated

中文:

china daily

http://www.chinadaily.com.cn/rss/

新浪

新闻要闻
http://rss.sina.com.cn/news/marquee/ddt.xml

国内新闻
http://rss.sina.com.cn/news/china/focus15.xml

国际新闻
http://rss.sina.com.cn/news/world/focus15.xml

港澳台新闻
http://rss.sina.com.cn/news/china/hktaiwan15.xml

社会新闻
http://rss.sina.com.cn/news/society/focus15.xml

体育新闻-焦点新闻
http://rss.sina.com.cn/news/allnews/sports.xml

国际足坛
http://rss.sina.com.cn/sports/global/focus.xml

国际足坛-德甲、法甲
http://rss.sina.com.cn/sports/global/germanyfrance.xml

国际足坛-西甲
http://rss.sina.com.cn/sports/global/spain.xml

国际足坛-英超
http://rss.sina.com.cn/sports/global/england.xml

国际足坛-意甲
http://rss.sina.com.cn/sports/global/italy.xml

五洲热报
http://rss.sina.com.cn/sports/global/others.xml

精彩图片
http://rss.sina.com.cn/sports/global/photo.xml

国内足坛
http://rss.sina.com.cn/sports/china/focus.xml

国内足坛-中国之队
http://rss.sina.com.cn/sports/china/team.xml

篮球新闻
http://rss.sina.com.cn/sports/basketball/focus.xml

篮球-NBA新闻
http://rss.sina.com.cn/sports/basketball/nba.xml

篮球-CBA新闻
http://rss.sina.com.cn/sports/basketball/cba.xml

科技新闻-焦点新闻
http://rss.sina.com.cn/news/allnews/tech.xml

滚动新闻
http://rss.sina.com.cn/tech/rollnews.xml

互联网-国际
http://rss.sina.com.cn/tech/internet/international28.xml

互联网-国内
http://rss.sina.com.cn/tech/internet/home28.xml

财经新闻-焦点新闻
http://rss.sina.com.cn/news/allnews/finance.xml

股市及时雨
http://rss.sina.com.cn/finance/jsy.xml

要闻公告
http://rss.sina.com.cn/finance/ywgg.xml

国际财经
http://rss.sina.com.cn/finance/gjcj.xml

国内财经
http://rss.sina.com.cn/finance/gncj.xml

滚动新闻
http://rss.sina.com.cn/finance/roll/newindex.xml

军事新闻-焦点新闻
http://rss.sina.com.cn/jczs/focus.xml

军备动态
http://rss.sina.com.cn/jczs/col/jbdongtai.xml

军事新闻
http://rss.sina.com.cn/jczs/col/xinwen.xml

外军新闻
http://rss.sina.com.cn/jczs/col/waijun.xml

台海形势
http://rss.sina.com.cn/jczs/col/xingshi.xml

各国军力
http://rss.sina.com.cn/jczs/col/junli.xml

我军新闻
http://rss.sina.com.cn/jczs/china15.xml

中国军事
http://rss.sina.com.cn/jczs/col/junshi.xml

周边军情
http://rss.sina.com.cn/jczs/col/junqing.xml

新闻评述
http://rss.sina.com.cn/jczs/annotation15.xml

武器纵横
http://rss.sina.com.cn/jczs/col/zongheng.xml
战略视角
http://rss.sina.com.cn/jczs/col/shijiao.xml
将军寄语
http://rss.sina.com.cn/jczs/col/jiyu.xml
综合新闻
http://rss.sina.com.cn/jczs/col/zonghe.xml
网友评论精选
http://rss.sina.com.cn/jczs/col/jingxuan.xml
女性新闻-焦点新闻
http://rss.sina.com.cn/news/allnews/eladies.xml
婚姻物语
http://rss.sina.com.cn/eladies/qinggan/hunyin50.xml
情感故事
http://rss.sina.com.cn/eladies/qinggan/qinggan50.xml
男性新闻-焦点新闻
http://rss.sina.com.cn/news/allnews/man.xml
财富人生
http://rss.sina.com.cn/man/col/wealth.xml
汽车新闻-焦点新闻
http://rss.sina.com.cn/news/allnews/auto.xml
车事评论
http://rss.sina.com.cn/auto/z/focus/2.xml
降价信息
http://rss.sina.com.cn/auto/z/jiangjiachao/3.xml
国外新车
http://rss.sina.com.cn/auto/z/2002-10newcar/6.xml

国产新车-业界动态
http://rss.sina.com.cn/auto/z/guochanche/1.xml

国产新车-25万元以上新车一览
http://rss.sina.com.cn/auto/z/guochanche/7.xml

国产新车-20到25万新车一览
http://rss.sina.com.cn/auto/z/guochanche/6.xml

国产新车-15到20万元新车一览
http://rss.sina.com.cn/auto/z/guochanche/5.xml

国产新车-10至15万元新车一览
http://rss.sina.com.cn/auto/z/guochanche/4.xml

国产新车-10万元以内新车一览
http://rss.sina.com.cn/auto/z/guochanche/3.xml

娱乐新闻-焦点新闻
http://rss.sina.com.cn/news/allnews/ent.xml

音乐
http://rss.sina.com.cn/ent/music/focus12.xml

电视前沿
http://rss.sina.com.cn/ent/tv/focus7.xml

电影宝库
http://rss.sina.com.cn/ent/film/focus7.xml

明星全接触
http://rss.sina.com.cn/ent/star/focus7.xml

书业观察
http://rss.sina.com.cn/book/observe10.xml

新书信息
http://rss.sina.com.cn/book/newbooks10.xml

作家动态
http://rss.sina.com.cn/book/author10.xml

文化新闻
http://rss.sina.com.cn/book/culture10.xml

文化教育-焦点新闻
http://rss.sina.com.cn/edu/focus19.xml

招聘信息
http://rss.sina.com.cn/edu/zhaopin8.xml

出国留学
http://rss.sina.com.cn/edu/abroad5.xml

招生考试
http://rss.sina.com.cn/edu/test8.xml

北京房产-每日推荐
http://rss.sina.com.cn/bjhouse/tuijian.xml

北京房产-新盘动态
http://rss.sina.com.cn/bjhouse/newhouser12.xml

上海房产-特别关注
http://rss.sina.com.cn/shhouse/guanzhu4.xml

上海房产-申城楼市
http://rss.sina.com.cn/shhouse/shencheng13.xml

游戏新闻-焦点新闻
http://rss.sina.com.cn/news/allnews/games.xml

星座新闻-焦点新闻
http://rss.sina.com.cn/news/allnews/astro.xml

新华网

国内新闻
http://rss.xinhuanet.com/rss/native.xml

国际新闻
http://rss.xinhuanet.com/rss/world.xml

财经新闻
http://rss.xinhuanet.com/rss/fortune.xml

体育新闻
http://rss.xinhuanet.com/rss/sports.xml

文娱新闻
http://rss.xinhuanet.com/rss/ent.xml

军事新闻
http://rss.xinhuanet.com/rss/mil.xml

IT新闻
http://rss.xinhuanet.com/rss/it.xml

科技新闻
http://rss.xinhuanet.com/rss/science.xml

教育新闻
http://rss.xinhuanet.com/rss/edu.xml

图片新闻
http://rss.xinhuanet.com/rss/photos.xml

法治新闻
http://rss.xinhuanet.com/rss/legal.xml

英文新闻
http://rss.xinhuanet.com/rss/english.xml

Top Stories
http://rss.news.yahoo.com/rss/topstories

U.S. National
http://rss.news.yahoo.com/rss/us

World
http://rss.news.yahoo.com/rss/world

Asian Tsunami Disaster
http://rss.news.yahoo.com/rss/asiatsunami

Iraq
http://rss.news.yahoo.com/rss/iraq

Mideast Conflict
http://rss.news.yahoo.com/rss/mideast

Politics
http://rss.news.yahoo.com/rss/politics

Elections
http://rss.news.yahoo.com/rss/elections

Business
http://rss.news.yahoo.com/rss/business

Technology
http://rss.news.yahoo.com/rss/tech

Sept. 11 & Terrorism
http://rss.news.yahoo.com/rss/sept11

Sports
http://rss.news.yahoo.com/rss/sports

Entertainment
http://rss.news.yahoo.com/rss/entertainment

Health
http://rss.news.yahoo.com/rss/health

Oddly Enough
http://rss.news.yahoo.com/rss/oddlyenough

Science
http://rss.news.yahoo.com/rss/science

Opinion/Editorial
http://rss.news.yahoo.com/rss/oped

Obituaries
http://rss.news.yahoo.com/rss/obits

Most Emailed
http://rss.news.yahoo.com/rss/mostemailed

Most Viewed
http://rss.news.yahoo.com/rss/mostviewed

Highest Rated
http://rss.news.yahoo.com/rss/highestrated

奇摩新聞

OPML
http://tw.news.yahoo.com/rss/opml

即時新聞
http://tw.news.yahoo.com/rss/realtime

政治
http://tw.news.yahoo.com/rss/politics

社會
http://tw.news.yahoo.com/rss/society

國際
http://tw.news.yahoo.com/rss/international

兩岸
http://tw.news.yahoo.com/rss/twoshore

財經
http://tw.news.yahoo.com/rss/finance

影視
http://tw.news.yahoo.com/rss/entertainment

體育
http://tw.news.yahoo.com/rss/sports

生活
http://tw.news.yahoo.com/rss/leisure

休閒
http://tw.news.yahoo.com/rss/relaxation

科技
http://tw.news.yahoo.com/rss/technology

健康
http://tw.news.yahoo.com/rss/health

新奇
http://tw.news.yahoo.com/rss/oddlyenough

 

网典新闻

头条新闻
http://www.netcull.com/rssfeeds/channel.aspx?ChannelID=8

今日要闻
http://www.netcull.com/rssfeeds/headline.aspx

国内要闻
http://www.netcull.com/rssfeeds/channel.aspx?ChannelID=1

国际要闻
http://www.netcull.com/rssfeeds/channel.aspx?ChannelID=2

财经要闻
http://www.netcull.com/rssfeeds/channel.aspx?ChannelID=3

科技要闻
http://www.netcull.com/rssfeeds/channel.aspx?ChannelID=4

娱乐要闻
http://www.netcull.com/rssfeeds/channel.aspx?ChannelID=5

体育要闻
http://www.netcull.com/rssfeeds/channel.aspx?ChannelID=6

社会要闻
http://www.netcull.com/rssfeeds/channel.aspx?ChannelID=7
两性要闻
http://www.netcull.com/rssfeeds/channel.aspx?ChannelID=10

其他要闻
http://www.netcull.com/rssfeeds/channel.aspx?ChannelID=9

百度新闻
国内新闻
http://news.baidu.com/n?cmd=4&class=civilnews&pn=1&tn=rss

国际新闻
http://news.baidu.com/n?cmd=4&class=internews&pn=1&tn=rss

体育新闻
http://news.baidu.com/n?cmd=4&class=sportnews&pn=1&tn=rss

娱乐新闻
http://news.baidu.com/n?cmd=4&class=enternews&pn=1&tn=rss

互联网新闻
http://news.baidu.com/n?cmd=4&class=internet&pn=1&tn=rss

科技新闻
http://news.baidu.com/n?cmd=4&class=technnews&pn=1&tn=rss

财经新闻
http://news.baidu.com/n?cmd=4&class=finannews&pn=1&tn=rss

社会新闻
http://news.baidu.com/n?cmd=4&class=socianews&pn=1&tn=rss

计算机世界

CCW圈点
http://www.ccw.com.cn/rss/news2/1.xml

CCW企业新闻
http://www.ccw.com.cn/rss/news2/12.xml

CCW笔记本新闻
http://www.ccw.com.cn/rss/news2/19.xml

CCW今日要闻
http://www.ccw.com.cn/rss/news2/2.xml

CCW技术新闻
“http://www.ccw.com.cn/rss/news2/13.xml

CCW手机新闻
http://www.ccw.com.cn/rss/news2/24.xml

CCW技术前沿
http://www.ccw.com.cn/rss/news2/3.xml

CCW信息化新闻
http://www.ccw.com.cn/rss/news2/14.xml

CCW数码新闻
http://www.ccw.com.cn/rss/news2/22.xml

CCW产业新闻
http://www.ccw.com.cn/rss/news2/32.xml

CCW软件新闻
http://www.ccw.com.cn/rss/news2/15.xml

CCW游戏新闻
http://www.ccw.com.cn/rss/news2/26.xml

CCW通信新闻
http://www.ccw.com.cn/rss/news2/8.xml

CCW硬件新闻
http://www.ccw.com.cn/rss/news2/16.xml

CCW E生活
http://www.ccw.com.cn/rss/news2/27.xml

CCW互联网新闻
http://www.ccw.com.cn/rss/news2/9.xml

CCW网络产品新闻
http://www.ccw.com.cn/rss/news2/17.xml

CCW厂商动态
http://www.ccw.com.cn/rss/news2/28.xml

CCW信息安全新闻
http://www.ccw.com.cn/rss/news2/11.xml

CCW信息化焦点
http://www.ccw.com.cn/rss/cio/37.xml

CCW CIO精华
http://www.ccw.com.cn/rss/cio/35.xml

CCW信息化数据
http://www.ccw.com.cn/rss/cio/36.xml

CCW职场焦点
http://www.ccw.com.cn/rss/work2/38.xml

CCW职场实用指南
http://www.ccw.com.cn/rss/work2/39.xml

CCW职场法规实务
http://www.ccw.com.cn/rss/work2/40.xml

CCW DIY今日焦点
http://www.ccw.com.cn/rss/diynew/34.xml

CCW台式机促销
http://www.ccw.com.cn/rss/pc/33.xml

CCW数码行情速递
http://www.ccw.com.cn/rss/dc/31.xml

CCW数码应用技巧
http://www.ccw.com.cn/rss/dc/30.xml

CCW数码导购指南
http://www.ccw.com.cn/rss/dc/29.xml

CCW本本导购
http://www.ccw.com.cn/rss/notebook/25.xml

CCW本本应用
http://www.ccw.com.cn/rss/notebook/21.xml

CCW笔记本新品
http://www.ccw.com.cn/rss/notebook/20.xml

CCW本本评测
http://www.ccw.com.cn/rss/notebook/23.xml

CCW下载中心
http://www.ccw.com.cn/rss/soft/18.xml

CCW软件评测
http://www.ccw.com.cn/rss/soft/10.xml

CCW应用教程
http://www.ccw.com.cn/rss/soft/46.xml

CCW服务器导购
http://www.ccw.com.cn/rss/server/47.xml

CCW网络存储
http://www.ccw.com.cn/rss/server/48.xml

CCW网络产品评测
http://www.ccw.com.cn/rss/netprod/49.xml

CCW网络产品导购
http://www.ccw.com.cn/rss/netprod/50.xml

天极网

网络通信
http://rss.chinabyte.com/218424581927469056.xml

Myrss
http://rss.yesky.com/360287970189639680.xml

E企业
http://rss.chinabyte.com/218706056904179712.xml

E时代
http://rss.yesky.com/74872343805034496.xml

评论天地
http://rss.chinabyte.com/217017207043915776.xml

软件
http://rss.yesky.com/72339069014638592.xml

天极下载
http://rss.yesky.com/mydown/index.xml

新闻总线
http://rss.chinabyte.com/216454257090494464.xml

数码时尚
http://rss.yesky.com/73746443898191872.xml

游戏
http://rss.yesky.com/73183493944770560.xml
网络产品
http://rss.it168.com/txt/04.xml

办公产品
http://rss.it168.com/txt/01.xml

打印扫描
http://rss.it168.com/txt/40.xml

数码相机
http://rss.it168.com/txt/19.xml

DIY配件
http://rss.it168.com/txt/02.xml

通信产品
http://rss.it168.com/txt/15.xml

笔记本
http://rss.it168.com/txt/16.xml

台式机
http://rss.it168.com/txt/17.xml

服务器
http://rss.it168.com/txt/14.xml

无线网
http://rss.it168.com/txt/39.xml

投影机
http://rss.it168.com/txt/18.xml

软件产品
http://rss.it168.com/txt/22.xml

消费数码
http://rss.it168.com/txt/23.xml

解决方案
http://rss.it168.com/txt/06.xml

网刊
http://rss.it168.com/txt/13.xml

评测中心
http://rss.it168.com/txt/09.xml

视频中心
http://rss.it168.com/txt/43.xml

产品评论
http://rss.it168.com/txt/pinglun.xml

疑难解答
http://rss.it168.com/txt/26.xml

驱动下载
http://rss.it168.com/txt/download.xml

商务干线
http://rss.it168.com/txt/cuxiao.xml

论坛
http://rss.it168.com/txt/bbs.xml

博客中国

博客焦点
http://www.blogchina.com/xml/1_rss2.xml

热点话题
http://www.blogchina.com/xml/2_rss2.xml

博客文章
http://www.blogchina.com/xml/3_rss2.xml

网络文化
http://www.blogchina.com/xml/5_rss2.xml

产品评论
http://www.blogchina.com/xml/6_rss2.xml

企业评论
http://www.blogchina.com/xml/7_rss2.xml

资本市场
http://www.blogchina.com/xml/9_rss2.xml

人物评论
http://www.blogchina.com/xml/10_rss2.xml

经济评论
http://www.blogchina.com/xml/11_rss2.xml

博客知识
http://www.blogchina.com/xml/13_rss2.xml

科学探索
http://www.blogchina.com/xml/15_rss2.xml

传媒评论
http://www.blogchina.com/xml/14_rss2.xml

专栏文章
http://www.blogchina.com/xml/4_rss2.xml

产业评论
http://www.blogchina.com/xml/8_rss2.xml

人文爱好
http://www.blogchina.com/xml/12_rss2.xml

中国

P2P新闻
http://www.ppcn.net/rssFeed.aspx?cid=1

P2P技术
http://www.ppcn.net/rssFeed.aspx?cid=2

P2P软件
http://www.ppcn.net/rssFeed.aspx?cid=3

P2P软件教程
http://www.ppcn.net/rssFeed.aspx?cid=5

P2P软件评测
http://www.ppcn.net/rssFeed.aspx?cid=15

安全相关
http://www.ppcn.net/rssFeed.aspx?cid=4

推荐

Donews BLOG
http://www.donews.net/mainfeed.aspx

对牛乱弹琴
http://feeds.feedburner.com/PlayinWithIt

飞雪、残剑、无间道
http://www.donews.net/tycoo/Rss.aspx

张翼轸的BLOG
http://www.earlzhang.com/lblog/blogrss2.asp

毛向辉的BLOG
http://www.isaacmao.com/rss.xml

猛小蛇的BLOG
http://www.18mo.com/rss2.asp

王翌@BLOG
http://www.donews.net/wangyi/Rss.aspx

老鬼阿定
http://olddog.mblogger.cn/Rss.aspx

高春辉的BLOG
http://www.paulgao.com.cn/xml-rss2.php

DRLBlogs
http://blog.dream4ever.org/rss.aspx?id=-1

DoNews.COM – IT写作社区
http://www.donews.com/rss.xml

Google Blog – Live
http://www.google.com/googleblog/atom.xml

Google Weblog
http://google.blogspace.com/index.xml

Google吧
http://www.google8.net/index.rdf

Scripting News
http://www.scripting.com/rss.xml

国家科学数字图书馆
http://www.csdl.net.cn/weblog/index.xml

软件生活 – 品网
http://wwy.iseetimes.com/blog/?q=taxonomy/feed/vocab/4

WebLeOn&#039;s Blog
http://feeds.feedburner.com/WebleonsBlog

365Key-天天网摘
http://www.365key.com/rssfeed.aspx

财经博客RSS
http://blog.cnfol.com/rss/rss.xml

del.icio.us
http://del.icio.us/rss

Furl
http://www.furl.net/members/rss.xml

博客园
http://www.cnblogs.com/CatalogOpml.aspx

PODCAST PODIUM 播客宝典
http://hopesome.com/wp-rss2.php

歪酷博客
http://www.yculblog.com/rss.xml

羊城网友周刊
http://www.gznf.net/rss.xml

阳光博客
http://www.shineblog.com/blog/rss2.asp

即时Blog
http://www.blogcn.com/user_rss.asp

Intel Products
http://rss.intel.com/rss/intel-products.xml

Intel Press Room
http://rss.intel.com/rss/intel-pressroom.xml

Software at Intel
http://rss.intel.com/rss/intel-sw-development-news.xml

Intel&reg; Reseller Center
http://rss.intel.com/rss/channel/reseller/asmo-na/eng/intel-reseller-center.xml

微软 开发 技术

MSDN 中文网站
http://www.microsoft.com/china/msdn/rss.xml

TechNet技术资源
http://www.microsoft.com/china/technet/rss.xml

CSDN新闻中心
http://www.csdn.net/Rss/RssFeed.aspx?rssid=4

CSDN Blog: all
http://blog.csdn.net/rsspages/0.xml

IEBlog
http://blogs.msdn.com/ie/Rss.aspx

蓝色理想技术文档
http://www.blueidea.com/tech/rss.xml

放飞技术网
http://www.frontfree.net/index.xml
Sunbelt Software Updates
http://www.sunbelt-software.com/rss/updated.xml

Sunbelt Software New Products
http://www.sunbelt-software.com/rss/added.xml

SnapFiles (formerly WebAttack.com) latest software
http://www.snapfiles.com/webattack.xml

PCWorld.com – Most Popular Downloads of the Week
http://rss.pcworld.com/rss/downloads.rss?period=week

CNET Download.com 25 Newest Windows titles

http://export.cnet.com/export/download/dl-new25-windows.xml

BetaNews.Com

http://www.betanews.com/rss2

先锋网软件下载

http://www.pcpchina.com/klip/pcpnews_software.xml

先锋网驱动下载

http://www.pcpchina.com/klip/pcpnews_drivers.xml

先锋网综合新闻

http://www.pcpchina.com/klip/pcpnews_general.xml

先锋网站务新闻

http://www.pcpchina.com/klip/pcpnews_site.xml

MajorGeeks Downloads

http://www.majorgeeks.com/backend.php?id=120

About Shareware/Freeware

http://z.about.com/6/g/shareware/b/index.xml

File Flash

http://www.fileflash.com/rss.php

Microsoft Download Center

http://www.thundermain.com/rss

Neowin.net

http://neowin.net/backend.php?page=main

OSNews

http://www.osnews.com/files/recent.rdf

PC Magazine: New Product Reviews

http://rssnewsapps.ziffdavis.com/pcmag.xml

ProgramFiles

http://www.programfiles.com/newsfeed/pfrss.xml

QQT 0day NFO News

http://www.quanqiutong.com/nfo/0day.php

SourceForge.net New Releases

http://sourceforge.net/export/rss_sfnewreleases.php

TLF 0Day NFO Trans

http://0daycheck.eastgame.net/0day/feeds/index.rss2

VeryCD – 资源更新订阅 – 分享互联网

http://lib.verycd.com/index.xml

divx.thu.cn最近更新

http://divx.thu.cn/rss/rss_feed.php

网易下载

http://dl.163.com/rss/rss.xml

The Register

http://www.theregister.co.uk/excerpts.rss

小熊在线

http://www.beareyes.com.cn/2/data/bear/2005/rss/index.xml

搜索引擎研究
http://www.wespoke.com/index.xml

Tom&#039;s Hardware Guide: Articles

http://www.tomshardware.com/articles.xml

Wired News: Technology

http://www.wired.com/news/feeds/rss2/0,2610,3,00.xml

伊甸园BT下载

http://bt.ydy.com/rss.php

SofoTex.com – Latest Freeware Downloads

http://www.sofotex.com/download/xml/freeware.xml

SofoTex.com – New Software Downloads

http://www.sofotex.com/download/xml/newxml.xml
天一证券-经济新闻

http://www.skyone.com.cn/sub/rss/list_jjxw.xml

天一证券-国内财经

http://www.skyone.com.cn/sub/rss/list_gncj.xml

天一证券-国际财经

http://www.skyone.com.cn/sub/rss/list_gjcj.xml

天一证券-投资技巧

http://www.skyone.com.cn/sub/rss/list_tzjq.xml

天一证券-其他市场

http://www.skyone.com.cn/sub/rss/list_qtsc.xml

天一证券-理财知识

http://www.skyone.com.cn/sub/rss/list_lczs.xml

天一证券-基金市场

http://www.skyone.com.cn/sub/rss/list_jjsc.xml

天一证券-B股专栏
<a href=”http://www.skyone.com.cn/sub/rss/list_bgzl.xml
经济杂谈

http://blog.cnfol.com/rss/jjzt.xml

谈股论金

http://blog.cnfol.com/rss/tglj.xml

基金园地

http://blog.cnfol.com/rss/jjyd.xml

债券市场

http://blog.cnfol.com/rss/zqsc.xml

外汇投资
<
http://blog.cnfol.com/rss/whtz.xml

期市风云

http://blog.cnfol.com/rss/qsfy.xml

时尚科技

http://blog.cnfol.com/rss/sskj.xml

艺术生活

http://blog.cnfol.com/rss/yssh.xml

百味人生

http://blog.cnfol.com/rss/bwrs.xml

休闲时刻

http://blog.cnfol.com/rss/xxsk.xml

金融投资管理与研究中心

社区

http://www.fimr.org/xml/rss2_forum.xml

观点
http://www.fimr.org/xml/rss2_news.xml

知识库
http://www.fimr.org/xml/rss2_article.xml

资源下载
http://www.fimr.org/xml/rss2_down.xml

视频影院
http://www.fimr.org/xml/rss2_video.xml

交易场
http://www.fimr.org/xml/rss2_flea.xml

金融家
http://www.fimr.org/xml/rss2_prof.xml

读书
http://www.fimr.org/xml/rss2_book.xml

法规库
http://www.fimr.org/xml/rss2_rules.xml

个人专栏
http://www.fimr.org/xml/rss2_colum.xml

素为法学
http://www.verylaw.com/lawblog/rss2.php

秦人一法
http://www.verylaw.com/ben/rss2.php

正一法言
http://www.verylaw.com/zhy/rss2.php

光辉思绪
http://www.verylaw.com/sop/rss2.php

唐逸法学评论
http://www.verylaw.com/tangyi/rss2.php
动态频道
http://www.yishow.com/artnews/rss.asp

文摘频道
http://www.yishow.com/artstory/rss.asp

影音频道
http://www.yishow.com/audiovisual/rss.asp

摄影频道
http://www.yishow.com/artphoto/rss.asp

敏思博客

敏思推荐RSS
http://www.blogms.com/blogpath/imgpath/RssBestLog.xml

敏思周刊RSS
http://www.blogms.com/blogpath/imgpath/RssMagLog.xml

记事
http://www.blogms.com/blogpath/imgpath/RssNewLog1000.xml

参考
http://www.blogms.com/blogpath/imgpath/RssNewLog1001.xml

记人
http://www.blogms.com/blogpath/imgpath/RssNewLog1003.xml

记情
http://www.blogms.com/blogpath/imgpath/RssNewLog1005.xml

思想和言论
http://www.blogms.com/blogpath/imgpath/RssNewLog1006.xml

文学创作
http://www.blogms.com/blogpath/imgpath/RssNewLog1007.xml
文学 其他

橄榄树文学
http://www.wenxue.com/T3/?q=article/feed

中国管理咨询网资讯更新
http://www.chnmc.com/rss2.asp
时政要闻
南方周末 http://www.infzm.com/rss/home/rss2.0.xml
中国报道周刊(观点比较激进,服务器在国外) http://feeds.feedburner.com/china-week
联合早报:深受华人欢迎的报纸,对中国大陆的评价比较客观。http://www.zaobao.com/yl/yl.xml
路透新闻中文版: http://cn.reuters.com/rssFeed/CNTopGenNews
华尔街日报中文版:http://cn.wsj.com/gb/rss02.xml
青年参考:关注社会热点问题,贴近青年关注问题。http://www.hifiwiki.net/news/rss/qnck.xml
南风窗:以辛辣的笔触揭示中国社会深度问题。 http://blog.sina.com.cn/myblog/index_rss.php?uid=1284797513
参考消息: http://www.ckxx.info/rss/rss.xml
FT中文网:远看中国,时事评论。 http://www.ftchinese.com/rss/column/007000004
凤凰网 http://news.phoenixtv.com/pubres/rss/taiwan/feed.xml
爱枣报(评论类网志,语言风趣辛辣,针砭时弊。)http://www.izaobao.us/?feed=rss2

 

读书文娱类
Leica中文摄影杂志 :http://feed.feedsky.com/leica
外滩画报: http://blog.sina.com.cn/rss/THEBUND.xml
精彩语录: http://www.myfreeheart.cn/rss.xml
电影世界:影讯、影评。http://blog.sina.com.cn/rss/dianyingshijie.xml
三联生活周刊: http://blog.sina.com.cn/myblog/index_rss.php?uid=1191965271
佳人(杂志) http://jiaren.org/feed/
褪墨(时间管理、教育的博客) http://www.mifengtd.cn/feed
随风而逝(读书/思考/职场) :http://gudao.mysmth.net/feed
流浪的天空: http://feed.happysky.org/
掘图志(好玩的图片博客) http://feeds.juetuzhi.cn/
序言书室(香港很有名的书店网站) http://www.hkreaders.com/?feed=rss2
广告放肆(广告创意博客) http://feed.feedsky.com/digiart
槽边往事(不错观点的网站) http://feeds.feedburner.com/caitou
中国国家地理博客(官方的,会有杂志的一些内容) http://blog.sina.com.cn/rss/cng.xml
Leica 摄影杂志(摄影爱好者图集) http://www.leica.org.cn/feed.php
豆瓣最受欢迎书评 http://www.douban.com/feed/review/book
精彩资讯 Mtime时光网(电影资讯网站,很全) http://www.mtime.com/rss/news.rss
水煮沉浮(冷笑话):http://www.911usa.com.cn/happy/feed.php
美女天天看: http://www.feedou.com/rss/5aea25e613aa775c0113aa7c30410023.xml
杂乱的书桌: http://feed.quhuashuai.com/

饮食男女类
穿衣打扮:提供服饰搭配,美容知识等方面的精彩文章:http://www.chong4.com.cn/feed.php
生活帮:我们每天都在和时间赛跑,和生活拼搏。http://feeds.feedburner.com/lifebang
美容护肤: 介绍女性美容,护肤技巧的公益性站点—— http://feed.feedsky.com/meirong
喷嚏网:阅读、发现和分享:8小时外的健康生活 。 http://www.dapenti.com/blog/index.asp
营养饮食:每天几招 http://www.j1ol.com/rssfeed/rssfd1.asp?c=5
健康资讯: http://www.j1ol.com/rssfeed/rssfd1.asp?c=4
科学类:
丁香园:关注生活,关注健康,国内最大的医药科技论坛。http://www.dxy.cn/bbs/rss/2.0/all.xml
Solidot (科技博客,包含IT和自然科学的,强烈推荐,每天必看)http://feeds.feedburner.com/solidot
ScienceDaily: 每天更新全球的科技杂志最新科研进展 http://feeds.sciencedaily.com/sciencedaily
TheScientist:科学家们关注的新闻。http://feeds.feedburner.com/NewsFromTheScientist
环球科学(自然科学类) http://blog.sina.com.cn/rss/sciam.xml
科学松鼠会(国内一帮搞自然科学方面的年轻人创办的自然科学博客,内容很好) http://songshuhui.net/feed
Nature News(英国顶尖的自然科学杂志官方) http://www.nature.com/news/rss.rdf
New Scientist: 综合的科技新闻,关注科研。http://feeds.newscientist.com/science-news
Discovery News(不用介绍了,太有名了) http://feeds.feedburner.com/DiscoveryNews-Top-Stories
绿色播报(健康饮食及农业科技相关) http://www.if-g.com/feed
Wikipedia(最近更新,中文版) http://zh.wikipedia.org/w/index.php?title=Special:%E6%9C%80%E8%BF%91%E6%9B%B4%E6%94%B9&feed=rss
科学网:最新科技资讯、中国科学界动态、评论,大量中国科学家的精彩博客。 http://www.sciencenet.cn/xml/news.aspx?news=0
ScienceNow:美国顶级科学杂志。 http://www.sciencemag.org/rss/current.xml
英语学习类
海词论坛(强烈推荐) http://bbs.dict.cn/rss.php?auth=0
每日英语 http://english-feed.beanwoo.com/
口语听力: 掌握地道的表达法和语腔语调。 http://www.chinaenglish.com.cn/rssFeed.aspx?cid=11
摩西英语 http://www.mosesenglish.com/rss/index.asp
BBC China英语教学 http://www.bbc.co.uk/china/learningenglish/index.xml
沪江英语听说:在线练习听说,公交车上也别错过机会。http://feed.feedsky.com/hjts

IT/数码/网络
iphone限时免费软件: http://appshopper.com/feed/?mode=featured&filter=price&type=free
善用佳软: http://feed.xbeta.info/
iphone的破解软件动态:http://appulo.us/appdb/rss/15/newvers/0/*/feed-html.xml
网生代(web2.0应用集合) http://feeds.feedburner.com/webornfeed
色影无忌:全球最大的影像集散地。http://www.xitek.com/newsite/plus/rss.php?tid=14
电脑爱好者: http://blog.sina.com.cn/myblog/index_rss.php?uid=1292566893
精品绿色便携工具: http://www.portablesoft.cn/feed.php
电脑玩物: http://feeds.feedburner.com/playpc
Engadget(科技博客,主要是关于硬件方面的,每天更新,英语,美国主站,每天必看) http://www.engadget.com/rss.xml
小众软件(小软件和新奇软件的集散地) http://www.appinn.com/feed/
且行资源(关注教育技术动态,研究教学资源设计与开发技术):http://www.qiexing.com/rss.xml
分享网络2.0(WEB2.0应用集合) http://feed.feedsky.com/showeb20
cnBeta.COM(IT业界新闻) http://www.cnbeta.com/backend.php
软件世界: http://feed.iplaysoft.com/
Engadget中国版(科技博客,主要是关于硬件方面的,每天更新,台北分站,简体中文,和主站内容不同) http://cn.engadget.com/rss.xml
Chrome OS Fans(GOOGLE系统动态跟踪) http://www.chromeosfans.com/feed

南京如何办理独生子女证

生育保险的报销必须要办理独生子女证,介绍一下最近在南京办理独生子女证得基本流程。虽说是个小东西,但是也折腾了一圈。
需要材料:

  • 宝宝的户口本原件以及复印件
  • 独生子女证申请表
  • 父母的结婚证及复印件
  • 父母的身份证以及复印件
  • 申请人近期1寸照片1张,父母双方一人一张

注意申请表要两份,且要到夫妻双方的工作单位盖章。有的直接在社区就可以盖章,这就要看社区的服务态度了,我们的社区态度就比较恶劣,非要我们去公司盖章。我们走正常流程给宝宝上的户口,还非说我们找关系了,莫名其妙的人。真是讨厌跟这种部门的人打交道,可恶的很。
下面就说到申请流程了:
办好以上的所有材料,然后到户口所在地的社区计生办,一般都在街道办里面。

当然不会当天给你啦,就这些“服务”部门,平时没事干,但是至少也要拖个一周吧,等电话通知

dushengzinvzheng

Google Hummingbird(蜂鸟)算法解密——Google的最新算法

Google 有了一次新的算法更新,搜索引擎利用它来分类并返回所有的信息,这个先算法被Google称作“蜂鸟算法”。蜂鸟算法是对整个排名算法的一次重写,简单说就是谷歌识别内容的能力更强了,可以进行语义分析, 就是用户输入一个词、一句话,Google可以猜测出大致的意思,然后推介最相关的页面,而不是堆积关键词的. 因为许多网民会在搜索框中输入完整的问句进行搜索,算法主要影响长尾以及内页。

下面是SearchEngineLand的Danny Sullivan发了一个FAQ帖子,信息比较全,翻译理解如下。

什么是“搜索算法?”
这是一个术语,你能想到的谷歌使用一个方法,对数十亿的网页和其他信息信息进行排序,,并返回它认为是最好的答案。

什么是“蜂鸟Hummingbird”?
它是谷歌正在使用的新搜索算法的名字,谷歌表示,应该会有较好的搜索效果。

所以,“PageRank”的算法是死了吗?
PageRank包括200多个主要“成分”,蜂鸟是配方之一。 蜂鸟是PageRank 的一个重要元素-页面链接的重要性和其他因素,如谷歌是否认为一个页面是质量好,和许多其他的因素有关。

为什么叫蜂鸟?
谷歌告诉我们的名字来自“精确和快速。”

蜂鸟是什么时候开始的? 今天?
大约一个月前,谷歌开始使用蜂鸟。今天谷歌宣布的变化。

蜂鸟现在正在使用的是什么意思?
想想建于20世纪50年代的汽车。 它可能有一个的引擎,但它也可能是一个缺乏燃油喷射的或无法使用无铅燃料的引擎。当谷歌跳跃到蜂鸟,它是淘汰的旧发动机的汽车,并提出一个新的。 蜂鸟算法发布的非常快,没有人真正注意到了它的开始。

谷歌最后一次用这种方式取代了它原本的算法吗是什么时候?
2010年,Google发布了“Caffeine Update”(咖啡因)这也是一次重大更新。但这次更新主要是帮助Google更好的收集信息(索引)而不是给信息排序。Google Caffeine给网络开发与SEO带来相当大的冲击。Google高级副总裁Amit-Singhal表示,此次是三年以来Google规模最大的算法更新,上一次更新是在三年之前的“咖啡因计划”。

所有企鹅Penguin、熊猫Panda和其他的“更新”,难道这些算法没有带来任何改变吗?
熊猫 , 企鹅和其他更新改变部分老算法,但不是整个整个替换。 再次认为它像一个引擎。 这些东西,如果发动机获得了新的机油滤清器或有改进泵把英寸蜂鸟是一种全新的引擎,虽然他们仍然在使用一些旧的同一部位,如企鹅和熊猫Hummingbird google

 

蜂鸟是新的发动机使用的是旧零件?
是,但并不全是。 某些零件还是非常好的,所以没有理由废弃他们。 其他部分正在不断地被更换。 在一般情况下,蜂鸟 – 谷歌说 – 是建立在现有的和新的方式并行,特别为今天的搜索需求,而不是一个10年前创建的需要,一个新的引擎,然后返回信息。

Hummingbird支持哪些类型的“新”搜索活动?
越来越多的网民通过智能手机和平板上网,他们会通过语音工具输入完整的疑问句,这也是Google升级算法的动因所在。
“对话搜索”(Conversational search)是Google支持的最大特性之一。当人们使用对话搜索会发现很多有用的对话。比如“离我家最近卖iPhone 5s的地方是哪?”
传统的搜索引擎可能会更加注重匹配文字,比如“buy”和“iPhone 5s”。而Hummingbird则更加注重文字背后的含义,它可以更好的理解你家的实际位置,前提是你愿意与Google分享地理位置。将 “place” 理解为一家实体零售店;将“iPhone 5s” 理解为由特定的零售店兜售的一款特殊类型的电子设备,在了解这些含义后,则有助于Google搜索呈现出于其相匹配的页面和文字。

Google称Hummingbird更注重每个单词的查询功能,以确保整体查询、整段句子或对话,可以更好的理解语言概念,而不是一些特定的零散单词。因为随着网络搜索日渐普及,许多网民会在搜索框中输入完整的问句进行搜索。谷歌表示,蜂鸟更注重每个单词查询,确保整个查询 – 整个句子或对话或意义 – 考虑,而不是特定的词。 我们的目标是匹配的含义的页面做的更好,而不是匹配的短短几句话的页面。

蜂鸟算法到底改进什么了呢?
虽然影响了90%的查询,但影响最大的是比较复杂的,甚至有对话意味的查询,比如“我家周围最近在什么地方能买到iPhone 5s”这种。这也可能是SEO们没注意到这次更新的原因之一,通常网站监控的是比较短的主要目标关键词,而不是这么巨长的句子。

传统搜索排名算法通过词的匹配,比如“iPhone 5s”、“买”,在包含这些词的页面中找到相关页面。蜂鸟能更好理解查询词背后的实际意义,比如理解你家的位置(比如你用了Google地图之类的服务,或者仅仅是用Google搜索,Google也能知道你的位置),比如理解“地方”更多指的是个实体店(如果搜索的是“附近什么地方菜好吃”,这里的“地方”指的是饭馆),比如能理解iPhone 5s是个特定电器设备。

这种对实际意义的理解超出了词匹配的范畴。蜂鸟能找到更好回答整句话意思的页面,而不是仅仅匹配几个词。
很早以前Google就提到过,对查询词的更智能理解是他们的重要研究方向,Hummingbird大概就是成果吧。
我想,谷歌已经做这个对话搜索的东西!
(见谷歌令人印象深刻的“对话搜索”正式上线铬 ),但它只是一直在做它真正在知识图答案。 蜂鸟的目的是从整个网络的数十亿的网页技术应用的意义,除了知识图的事实,这可能会带来更好的结果。

蜂鸟算法真的管用吗?有前后对比码?
我们不知道。现在没有办法做一个“之前和之后”。相比以前,的确漂亮很多,我们只希望Google能够不断提升Hummingbird性能。然而,谷歌并没有提供一些之前和之后的例子。
Google提供了一些前后对比案例已显示Hummingbird的改进。比如,当某人搜索“胃酸”,搜索结果将会呈现出许多种药物,但并不会显示哪种方式才是最佳的治疗方式。现在,Google称对类似这样的结果进行了处理。
以前搜索“通过市民银行和信托银行支付账单”会跳出市民银行的主页,但是现在直接跳转到支付账单的特定页面。
谷歌表示,搜索“每片必胜客的热量”,答案可能来自于第三方网站但不是必胜客。 谷歌表示,现在,它列出这个答案直接从必胜客本身的网站。

谷歌会变糟糕吗?
肯定不会。 虽然我们不能说,谷歌变得更好,我们知道,蜂鸟 – 如果它确实已经在过去一个月中使用 – 没有引发任何一波的消费者抱怨说,谷歌的业绩突然坏了。 人们在事情变得更糟时抱怨,但是当情况有所改善他们一般不会注意到。

这是否意味着SEO是死了吗?
不, SEO不是又死 。GOOGLE指导仍然是一样的:高品质的内容。 在过去一直重要的信号现在仍然是重要的。

这是否意味着我要失去来自谷歌的流量?
如果你在过去的一个月还没有任何变化,好,蜂鸟对你毫发无损。 如果,在过去大约一个月前你的流量变化很大,你应该知道蜂鸟对你起作用了。

但我确实失去了流量!
或许正是由于蜂鸟,但谷歌强调说,它也可能是因一些,总是被改变,调整或改进其算法的其他部分,有没有办法知道。

你怎么知道这一切的东西吗?
谷歌分享了一些在今天的新闻发布会上 ,然后我跟谷歌的搜索高管阿米特辛格尔和本·戈麦斯,在事件发生后的更多细节。 我也希望在不久的将来从这些谈话的变化做一个更正式的样子。 但现在,希望你找到这个快速的常见问题,根据这些谈话对大家有所帮助。

关于rel=”canonical”标签的用法

rel=”canonical”是在页面head标签中,

创建 <link> 元素:<link rel=”canonical” href=” http://www.leranl.com/wordpress-global-translator/”/>

canonical 是 Google、雅虎、微软等搜索引擎与2009年一起推出的一个标签,百度在2013年1月8日也发声名表示认可这一标签。

rel=”canonical”的主要作用是对几个完全相同或高度相似的页面,为其指定唯一的URL,同时权重也将集中指向这个URL可以避免多个页面分散权重。同时也避免重复收录,提升搜索引擎友好性。

举例子:如http://www.leranl.com/wordpress-global-translator/

http://www.leranl.com/?p=679

这两个URL指向的是同一个页面,我们可以在http://www.leranl.com/?p=679

这个页面的head标签中,创建 <link> 元素:<link rel=”canonical” href=” http://www.leranl.com/wordpress-global-translator/”/>

在使用rel=”canonical”有以下点需要注意:

我们定义的链接最好是绝对地址,虽然canonical也可以支持相对地址,但是使用绝对地址可以避免不必要的错误

WordPress的最新版本已经默认添加了canonical标签

rel=”canonical”对于搜索引擎来说是建议,并不是指令

rel=”canonical”对网页并没有负面影响,目前国外ebay、amazon很多大的网站已经在全站添加canonical标签。

如:ebay的目录页

http://www.ebay.com/electronics/cell-phone-pda

 
SEO

wordpress 翻译插件Global Translator教程与一些问题

Global Translatorwordpress的一款多语言翻译插件,它可以支持将英文翻译成20多个国家的语言。而且它是将动态的页面缓存成为静态的html页面。理论上来讲,对于搜索引擎是友好的。因此不少博主安装了这个插件,一个是可以生成大量的页面,增加收录,还能带来多语的访问量,另一方面生成的静态页面对于搜索引擎也比较友好。

但是在使用Global Translator这个插件时发现一个问题,其生成的多语言页面没办法更新,如在使用该插件时侧边拦增加了某个公告或链接,一个月之后,公告和链接都已经删除了,但是在多语言页面中这些公告和链接依然存在,通过研究测试,有以下解决办法,1。将插件停用2。利用FTP工具到空间中将存在链接的页面全部删除,但是这样的办法会导致收录大将减少,对搜索引擎也不友好

所以大家权衡一下得失,慎用Global Translator这个插件。

还是简单介绍一下这个插件的使用方法,Global Translator主要功能包括

 

  • Four different translation engines: Google Translation Engine, Babel Fish, Promt, FreeTranslations
  • Search Engine Optimized: it uses the permalinks by adding the language code at the beginning of all your URI.
  • Fast Caching System: new fast, smart, optimized, self-cleaning and built-in caching system. Drastically reduction of the risk of temporarily ban from translation engines.
  • Fully configurable layout: you can easily customize the appearance of the translation bar by choosing between a TABLE or DIV layout for the flags bar and by selecting the number of translations to make available to your visitors
  • No database modifications: Global Translator is not intrusive. It doesn’t create or alter any table on your database: this feature permits to obtain better performances.
  • 四个不同的翻译引擎:谷歌翻译引擎,BING,PROMT,FreeTranslations
  • 搜索引擎优化:它使用的永久性添加的语言代码,在开始你的URI。
  • 快速缓存系统:新的快速,智能,优化,自我清洁和内置的缓存系统。大幅减少风险。
  • 完全可配置的布局:您可以轻松地自定义外观的翻译栏之间选择一个Table或者div布局的标志栏,并通过选择翻译的数量提供给您的访客
  • 没有数据库的修改:全球翻译不侵扰。它不创造或改变你的数据库的任何表:此功能允许获得更好的性能。

看一下界面截图:

Global Translator3 Global Translator1 Global Translator2

国内外关于英文SEO专业网站与论坛

做英文SEO离不开Google,但是国内的论坛已中文百度的研究居多,对于英文SEO国外有很多好的论坛, 看到很多人,不知道有哪些英文SEO网站,整理了自己常看的几个,给大家作参考。

Google官方:

英文SEO论坛:

Welcome to Moz We create SEO software, marketing analytics tools, and all kinds of content to help you learn inbound marketing We re also home to the web s most vibrant community of online marketers

Search Engine Land is a must read hub for news and information about search engine marketing, optimization and how search engines such as Google, Yahoo, Microsoft Live com and Ask com work for searchers

google seo

中文关于英文SEO的论坛

Sem9