<?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>搜猫SEO博客 &#187; 站内SEO</title>
	<atom:link href="http://www.seomao.com/tag/on-page-seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.seomao.com</link>
	<description>外贸SEO - 英文SEO - 搜索引擎优化博客</description>
	<lastBuildDate>Sat, 03 Sep 2011 18:20:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Alt 标签及其SEO作用</title>
		<link>http://www.seomao.com/seo-jargon/alt-tag/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=alt-tag</link>
		<comments>http://www.seomao.com/seo-jargon/alt-tag/#comments</comments>
		<pubDate>Wed, 06 May 2009 13:14:30 +0000</pubDate>
		<dc:creator>SEOmao</dc:creator>
				<category><![CDATA[SEO术语]]></category>
		<category><![CDATA[站内SEO]]></category>

		<guid isPermaLink="false">http://www.seomao.com/?p=224</guid>
		<description><![CDATA[Alt text，Alt标签，是一个html标签，用来描述一张图片的含义。除非这张图片打不开了，不然这个标签往往不会显示给最终用户看，而搜索引擎却会通过这个标签来判断这张图片的含义。搜索引擎无法像人一样看到一张图片就可以判断图片的内容，它需要通过文字描述的分析，所以Alt标签对于图片的搜索引擎优化有很重要的SEO作用。Alt标签应该准确而简洁的描述这张图片的含义。在Alt标签描述里堆积SEO关键词将被搜索引擎视为作弊处理。 熟悉锚文本的朋友，应该可以体会它和Alt标签的异曲同工之妙。]]></description>
		<wfw:commentRss>http://www.seomao.com/seo-jargon/alt-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>关于Robots.txt的SEO资料</title>
		<link>http://www.seomao.com/on-site-seo/robots-txt/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=robots-txt</link>
		<comments>http://www.seomao.com/on-site-seo/robots-txt/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 12:15:04 +0000</pubDate>
		<dc:creator>SEOmao</dc:creator>
				<category><![CDATA[站内SEO]]></category>
		<category><![CDATA[Robots.txt]]></category>
		<category><![CDATA[搜索蜘蛛]]></category>

		<guid isPermaLink="false">http://www.seomao.com/?p=153</guid>
		<description><![CDATA[关于Robots.txt的几点常用SEO资料： 1. 搜索蜘蛛都是贪婪的。原则上讲，除非搜索蜘蛛被事先告知，不然它们认为它们可以爬取和收录任意它们可以访问的页面。 2. Robots.txt文件就是是用来告诉搜索蜘蛛对于一个网站的页面，哪些可以收录，哪些不可以。 3. 每个搜索蜘蛛都有自己的名字，而星号(*)代表所有的搜索蜘蛛。如果你对某一个搜索蜘蛛，比如说GoogleBot采取了与其他搜索蜘蛛不同的指令的时候，这个指令优先于星号（*）指令。 User-agent:* Disallow: /admin/ Disallow: /pr/ User-agent: googlebot Disallow: /admin/ 如上所示，一段指令禁止所有的蜘蛛收录pr文件夹，第二段指令没有禁止GoogleBot收录pr文件夹，那么当GoogleBot来访的时候，它会忽略你的第一段指令。 4. Robots.txt不能完全的避免你的页面显示在Google搜索结果页面中，因为这些页面可能存在其他外部反链接。最好的避免某些页面显示在Google搜索结果页面的方法是在每页代码中使用 robots nonindex meta tag。如： &#60;meta name=”robots” content=”noindex”&#62; &#60;meta name=”robots” content=”noindex,nofollow”&#62; 5. 如果你没有Robots.txt文件，那么当搜索蜘蛛抓取Robots.txt文件的时候，你的服务器会自动反馈404错误。所以，如果你不想使用Robots.txt来引导搜索蜘蛛，你也最好上传一个空白文件作为你的Robots.txt。 6. 此外，你还可以在Robots.txt中指定你的Sitemap地址。 7. 就算使用了Robots.txt不让Googlebot收录这些页面，它们任然为消耗Page Rank。避免这些没有被收录的页面消耗Page Rank，最好的办法是使用 rel=nofollow。 常用Robts.txt 格式： 允许所有的搜索蜘蛛收录所有页面： User-agent:* Disallow: 禁止所有的搜索蜘蛛收录任何页面： User-agent:* Disallow:/ 禁止所有的搜索蜘蛛收录一个文件夹，但是允许收录该文件夹里面的一个文件： User-agent:* Disallow:/folder1/ Allow:/folder1/file1.html 如果你想用Robots.txt文件禁止GoogleBot收录你网站上任何一个以.php结尾的页面，那么你可以用如下格式：(后面跟着$符号) User-agent: Googlebot Disallow: /*.php$ [...]]]></description>
		<wfw:commentRss>http://www.seomao.com/on-site-seo/robots-txt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>大型网站站内SEO指南</title>
		<link>http://www.seomao.com/on-site-seo/on-page-seo-guide/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=on-page-seo-guide</link>
		<comments>http://www.seomao.com/on-site-seo/on-page-seo-guide/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 15:10:48 +0000</pubDate>
		<dc:creator>SEOmao</dc:creator>
				<category><![CDATA[站内SEO]]></category>
		<category><![CDATA[SEO指南]]></category>

		<guid isPermaLink="false">http://www.seomao.com/?p=143</guid>
		<description><![CDATA[大型网站的站内SEO的优化主要注意2个方面: 1. 页面针对关键词的优化。 2. 站内内部链接结构的优化。 关于页面针对关键词的优化： 整个网站应该有一个终极目标关键词，然后针对这个关键词设置一个关键词云，或者是关键词金字塔。我们首先要明确： 1. 整个网站针对每个关键词只选择一个页面来进行优化，集中资源。 2. 被选中的页面针对那个关键词的优化必须准确。 达到页面针对关键词的准确优化，我们必须做到： 1. 标题 Title: SEO标题里面关键词最好自然的重复2次. 2次重复不要连在一起，也不要单纯的重写一次。标题的前4个关键词很重要。短语比单词重复更好。 2. Meta Description: Meta Description不会影响页面的排名，但是会影响CTR。Meta Description是完全为用户写的，搜索关键词会被显示成粗体。所以这个必须要写得吸引人。使用带有关键词的句子。 3. &#60;h1&#62;：&#60;h1&#62;是这个页面内容的标题。非常的重要。我们非常多的页面以前没有&#60;h1&#62;，所以关键词的相关性始终上不去。这次改版的成效中&#60;h1&#62;的明确起到了很大的作用。&#60;h1&#62;最好只用一次。 4. &#60;h2&#62;,&#60;h3&#62;,&#60;h4&#62;： 这些属于副标题。作用在&#60;h1&#62;之后。最好是使用&#60;h1&#62;关键词的Cloud来显示。比如说&#60;h1&#62;是 Wholesale Clothing，&#60;h2&#62;可以为Top Wholesale Clothing Categories. 副标题可以为多个，但是不要重复。 5. 静态页面： 页面应该是某种程度的静态页面，而且有充足的文字内容和链接。避免过多的图片和Flash.页面如果有500-800字左右的文字叙述，Google收录 性特别好。每页的第一段文字（前100个单词）对于这个页面非常重要，确保里面有足够的该页面所针对的关键词。页面html代码显示的前100个文字单词 中，关键词至少出现2次。整篇文章按照长度的不同，关键词至少重复出现3-5次以上。但是keyword density 本身不是一个至关重要的指标，也没有人能够给出准确的keyword density。 5.链接关键词： 链接关键词Anchor应该是有意义的关键词，最好包括这个页面所针对的关键词的cloud，但不是完全的关键词本身。更不是像“点击这里”, “Click Here”之类的无意义的单词。此外，关键词需要准确。“Apparel, Clothing”如果和在一起作关键词，的确既包含了Apparel，又包含了Clothing，搜索这两个关键词的时候都有可能出现在Google搜 索结果里面。但是因为关键词不准确，所以和只针对一个关键词的竞争对手比较，处于弱势。 6. URL改写：网站页面的链接应该是某种程度上的静态链接。页面的url链接SEO要避免使用下划线，需要用中划线来代替空格，加号是第二最佳选择。千万不要在链接中包含空格。关键词应该出现在url里面。 7. Alt标签：确保网站的图片使用alt 标签。Alt标签不能反复堆积关键词，很有可能将被认为是作弊。 8. 文字vs图片： [...]]]></description>
		<wfw:commentRss>http://www.seomao.com/on-site-seo/on-page-seo-guide/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>通过面包屑导航提高SEO排名</title>
		<link>http://www.seomao.com/on-site-seo/breadcrumb/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=breadcrumb</link>
		<comments>http://www.seomao.com/on-site-seo/breadcrumb/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 00:25:11 +0000</pubDate>
		<dc:creator>SEOmao</dc:creator>
				<category><![CDATA[站内SEO]]></category>
		<category><![CDATA[内部链接]]></category>
		<category><![CDATA[面包屑导航]]></category>

		<guid isPermaLink="false">http://www.seomao.com/?p=122</guid>
		<description><![CDATA[面包屑导航的英文名字是 Breadcrumb Navigation。它的概念来自于童话故事“汉泽尔和格雷特尔”。童话主角通过在走过的地方撒下面包屑，来辨认回家的道路。面包屑导航除了方便用户识别他们目前在网站中的位置以及如何返回外，还有重要的SEO功效。

 

面包屑导航一般出现在页面的顶部，其显示形式一般为：

首页 &#62; 一级目录名称 &#62; 二级目录名称 &#62; 目前位置]]></description>
		<wfw:commentRss>http://www.seomao.com/on-site-seo/breadcrumb/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>关于导出链接的SEO误区和建议</title>
		<link>http://www.seomao.com/on-site-seo/outbound-links/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=outbound-links</link>
		<comments>http://www.seomao.com/on-site-seo/outbound-links/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 01:35:51 +0000</pubDate>
		<dc:creator>SEOmao</dc:creator>
				<category><![CDATA[站内SEO]]></category>
		<category><![CDATA[outbound links]]></category>
		<category><![CDATA[SEO资料]]></category>
		<category><![CDATA[导出链接]]></category>

		<guid isPermaLink="false">http://www.seomao.com/?p=118</guid>
		<description><![CDATA[很多人觉得只有导入型链接，也就是所谓的外部链接才对一个网站有SEO作用。其实这是不对的，网站的导出链接也有不能小视的SEO影响力。首先纠正一下5大导出链接Outbound Links的常见SEO误区。]]></description>
		<wfw:commentRss>http://www.seomao.com/on-site-seo/outbound-links/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>为什么需要把动态链接改成静态链接？</title>
		<link>http://www.seomao.com/on-site-seo/url-rewrite/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=url-rewrite</link>
		<comments>http://www.seomao.com/on-site-seo/url-rewrite/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 03:20:27 +0000</pubDate>
		<dc:creator>SEOmao</dc:creator>
				<category><![CDATA[站内SEO]]></category>
		<category><![CDATA[URL Rewrite]]></category>
		<category><![CDATA[动态链接]]></category>
		<category><![CDATA[链接修改]]></category>
		<category><![CDATA[静态链接]]></category>

		<guid isPermaLink="false">http://www.seomao.com/?p=110</guid>
		<description><![CDATA[把动态链接URL修改成静态链接URL的好处


1.       虽然搜索引擎，特别是Google，声称可以爬取和收录动态链接的页面，但是他们处理静态链接页面仍然更加轻松和容易。而让搜索引擎能够更快更全面的收录你的网站页面是大多数站长修改动态链接的根本原因。]]></description>
		<wfw:commentRss>http://www.seomao.com/on-site-seo/url-rewrite/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>如何写好标题title – SEO资料</title>
		<link>http://www.seomao.com/on-site-seo/how-to-write-title/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-write-title</link>
		<comments>http://www.seomao.com/on-site-seo/how-to-write-title/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 10:12:32 +0000</pubDate>
		<dc:creator>SEOmao</dc:creator>
				<category><![CDATA[站内SEO]]></category>
		<category><![CDATA[标题]]></category>
		<category><![CDATA[网页优化]]></category>

		<guid isPermaLink="false">http://www.seomao.com/?p=104</guid>
		<description><![CDATA[标题Title是站内SEO的一个重要的指标，今天浅谈一下如何针对SEO写好网页的标题。

1. 让你的标题title保持在65个字符以内。

标题里面的所有的字母，符号和空格加在一起应该等于或者少于65个字符。Google在某些情况下已经将展示字符数目提高到了70个。]]></description>
		<wfw:commentRss>http://www.seomao.com/on-site-seo/how-to-write-title/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>20大站内SEO要素清单</title>
		<link>http://www.seomao.com/on-site-seo/list/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=list</link>
		<comments>http://www.seomao.com/on-site-seo/list/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 13:46:57 +0000</pubDate>
		<dc:creator>SEOmao</dc:creator>
				<category><![CDATA[站内SEO]]></category>
		<category><![CDATA[页面优化]]></category>

		<guid isPermaLink="false">http://www.seomao.com/?p=99</guid>
		<description><![CDATA[下面列举20点站内SEO的要素：

1. 标题&#38; Meta标签：每个页面有准确和不重复的title标题和meta description标签。


2. 静态页面：每个页面应该是某种程度的静态页面，而且有充足的文字内容和链接。]]></description>
		<wfw:commentRss>http://www.seomao.com/on-site-seo/list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

