<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>吓我一跳 &#187; seo</title>
	<atom:link href="http://digegg.com/article/tag/seo/feed" rel="self" type="application/rss+xml" />
	<link>http://digegg.com</link>
	<description>分享新鲜，传递快乐</description>
	<lastBuildDate>Tue, 31 Jan 2012 13:49:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>如何让Google和百度的搜索建议中出现自己的站名</title>
		<link>http://digegg.com/article/565.htm</link>
		<comments>http://digegg.com/article/565.htm#comments</comments>
		<pubDate>Thu, 19 Nov 2009 02:48:38 +0000</pubDate>
		<dc:creator>Yusn</dc:creator>
				<category><![CDATA[互联网]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[搜索建议]]></category>
		<category><![CDATA[百度]]></category>

		<guid isPermaLink="false">http://www.digegg.com/?p=565</guid>
		<description><![CDATA[在Google中输入b的时候会发现提示百度，当在百度中输入g的时候会提示Google，这就是大家都熟悉的搜索建议，如果我们的站点也能被Google或百度提示的话，不说能带来多少流量&#8230;至少也是对我们自身的鼓励吧。 搜索建议： 所谓的“搜索建议”就是在Google或百度的搜索框中输入关键字时，搜索框下会自动出现下拉框，给出一些常用的建议词供用户选择性地使用。这些建议词都是最近一段时间内搜索的最热门的词汇。在Google和百度拥有搜索建议词的网站不仅能改善用户体验、提高流量，还能加深访客对网站的印象度，最重要的是能够增强seo：增加搜索引擎对网站的友好度、提高网站在搜索引擎中的权重。 添加搜索建议： 那么该如何做才能让Google和百度这两大霸主在各自的搜索建议中收录我们的站点名字呢，其实并不难，根据我最近一段时间的观察实验发现Google和百度对搜索建议词的收录情况并不是一成不变的，而是按照搜索次数由大到小排列的。这个搜索次数排行应该是近期一段时间的排行，而不是长期时间的排行。 知道搜索建议的规则就好办了，这样的话我们可以每天都在Google和百度上搜索我们站点的固定关键字(前提是站点已经被收录)，然后点击；最好多找几个朋友帮忙，这样的话坚持一段时间，半个月下来Google和百度就可以已经把你输入的关键字收录在他们的搜索建议中了。 写在最后：注意出现了不代表永久都会出现，过一段时间Google和百度就会更新搜索建议的词汇，搜索次数少的自然会被次数多的词汇所取代，所以做好站才是关键，还有要坚持下去。]]></description>
		<wfw:commentRss>http://digegg.com/article/565.htm/feed</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>使用图片做网站标题时如何做到seo优化</title>
		<link>http://digegg.com/article/563.htm</link>
		<comments>http://digegg.com/article/563.htm#comments</comments>
		<pubDate>Sun, 15 Nov 2009 15:15:38 +0000</pubDate>
		<dc:creator>Yusn</dc:creator>
				<category><![CDATA[个人日志]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.digegg.com/?p=563</guid>
		<description><![CDATA[前几天把博客的文字标题换成了图片logo，没有直接在Wordpress主题文件的header.php中直接用&#60;img&#62;插入图片logo，然后再为其加上超链接，这样不利于博客的seo；而是，在css样式表(style.css)中找到博客标题所应用的div样式(一般是#title或.title)，为其添加a和a:hover行为，再将logo图片作为背景添加上去，最后再加上text-indent属性，代码如下： #title a { ??? margin:5px 10px; ??? background:url(images/logo.gif) no-repeat 0 0;?? ??? width:108px; ??? height:50px; ??? display: block; ??? text-indent: -9999px; ??? outline: none; }??????????? 添加“text-indent”属性的目的就是要隐藏文字标题，让logo图片完美显示，不然的话文字会显示在图片上面，很影响美观。 虽然，网站标题对应的文字在浏览器上被隐藏了，但实际上对于搜索引擎来说它看到的仍然是标题所对应的文字，看不到图片logo，而我们自己在浏览器上看到的图片对搜索引擎来说等于空白，可以忽略不计，不相信的话可以在手机上使用UCWeb浏览器打开本站，头部显示的不是logo图片，而是“吓我一跳”四个文字。或者查看本博客的源文件，查找一下本博客的logo，并没有，只能找到“吓我一跳”这个标题。 写在最后，不管是对网站访问者来说，还是对搜索引擎来说，这样做都是“味道棒极了”，这种“他好我也好”的事情我们又何乐而不为呢！不管是Wordpress用户还是其他网站，这都是一个非常值得关注的问题。]]></description>
		<wfw:commentRss>http://digegg.com/article/563.htm/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

