<?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>OurApache &#187; meta</title>
	<atom:link href="http://ourapache.com/archives/tag/meta/feed" rel="self" type="application/rss+xml" />
	<link>http://ourapache.com</link>
	<description>我们致力于一个Apache知识的分享网站</description>
	<lastBuildDate>Tue, 13 Apr 2010 05:18:24 +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>meta标签的一些解释</title>
		<link>http://ourapache.com/archives/126</link>
		<comments>http://ourapache.com/archives/126#comments</comments>
		<pubDate>Tue, 10 Feb 2009 07:50:50 +0000</pubDate>
		<dc:creator>OurApache</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[meta]]></category>

		<guid isPermaLink="false">http://www.ourapache.com/?p=126</guid>
		<description><![CDATA[meta是用来在HTML文档中模拟HTTP协议的响应头报文。meta 标签用于网页的head与/head中，meta 标签的用处很多。meta 的属性有两种：name和http-equiv。name属性主要用于描述网页，对应于content（网页内容），以便于搜索引擎机器人查找、分类（目 前几乎所有的搜索引擎都使用网上机器人自动查找meta值来给网页分类）。这其中最重要的是description（站点在搜索引擎上的描述）和 keywords（分类关键词），所以应该给每页加一个meta值。]]></description>
			<content:encoded><![CDATA[<p>meta是用来在HTML文档中模拟HTTP协议的响应头报文。<a href="http://ourapache.com/archives/tag/meta" class="st_tag internal_tag" rel="tag" title="标签 meta 下的日志">meta</a> 标签用于网页的head与/head中，<a href="http://ourapache.com/archives/tag/meta" class="st_tag internal_tag" rel="tag" title="标签 meta 下的日志">meta</a> 标签的用处很多。<a href="http://ourapache.com/archives/tag/meta" class="st_tag internal_tag" rel="tag" title="标签 meta 下的日志">meta</a> 的属性有两种：name和http-equiv。name属性主要用于描述网页，对应于content（网页内容），以便于搜索引擎机器人查找、分类（目 前几乎所有的搜索引擎都使用网上机器人自动查找meta值来给网页分类）。这其中最重要的是description（站点在搜索引擎上的描述）和 keywords（分类关键词），所以应该给每页加一个meta值。比较常用的有以下几个：</p>
<p><strong>name 属性 </strong></p>
<p>1、meta name=”Generator” content=””用以说明生成工具（如Microsoft FrontPage 4.0）等；</p>
<p>2、meta name=”KEYWords” content=””向搜索引擎说明你的网页的关键词；</p>
<p>3、meta name=”DEscription” content=””告诉搜索引擎你的站点的主要内容；</p>
<p>4、meta name=”Author” content=”你的姓名”告诉搜索引擎你的站点的制作的作者；</p>
<p>5、meta name=”Robots” content= “all|none|index|noindex|follow|nofollow”<br />
<strong><br />
其中的属性说明如下： </strong></p>
<p>设定为all：文件将被检索，且页面上的链接可以被查询；</p>
<p>设定为none：文件将不被检索，且页面上的链接不可以被查询；</p>
<p>设定为index：文件将被检索；</p>
<p>设定为follow：页面上的链接可以被查询；</p>
<p>设定为noindex：文件将不被检索，但页面上的链接可以被查询；</p>
<p>设定为nofollow：文件将不被检索，页面上的链接可以被查询。</p>
<p><strong>http-equiv属性 </strong></p>
<p>1、meta http-equiv=”Content-Type” content=”text/html”;charset=gb_2312-80″</p>
<p>和 meta http-equiv=”Content-Language” content=”zh-CN”用以说明主页制作所使用的文字以及语言；</p>
<p>又如英文是ISO-8859-1字符集，还有BIG5、utf-8、shift-Jis、Euc、Koi8-2等字符集；</p>
<p>2、meta http-equiv=”Refresh” content=”n;url=http://yourlink”定时让网页在指定的时间n内，跳转到页面http://yourlink；</p>
<p>3、meta http-equiv=”Expires” content=”Mon,12 May 2001 00:20:00 GMT”可以用于设定网页的到期时间，一旦过期则必须到服务器上重新调用。需要注意的是必须使用GMT时间格式；</p>
<p>4、meta http-equiv=”Pragma” content=”no-cache”是用于设定禁止浏览器从本地机的缓存中调阅页面内容，设定后一旦离开网页就无法从Cache中再调出；</p>
<p>5、meta http-equiv=”set-cookie” content=”Mon,12 May 2001 00:20:00 GMT”cookie设定，如果网页过期，存盘的cookie将被删除。需要注意的也是必须使用GMT时间格式；</p>
<p>6、meta http-equiv=”Pics-label” content=””网页等级评定，在IE的internet选项中有一项内容设置，可以防止浏览一些受限制的网站，而网站的限制级别就是通过meta属性来设置的；</p>
<p>7、meta http-equiv=”windows-Target” content=”_top”强制页面在当前窗口中以独立页面显示，可以防止自己的网页被别人当作一个frame页调用；</p>
<p>8、 meta http-equiv=”Page-Enter” content=”revealTrans(duration=10,transtion= 50)”和meta http-equiv=”Page-Exit” content=”revealTrans(duration=20，transtion=6)”设定进入和离开页面时的特殊效果，这个功能即 FrontPage中的“格式/网页过渡”，不过所加的页面不能够是一个frame页面。</p>
<h3  class="related_post_title">无相关文章，以下随机显示</h3><ul class="related_post"><li>2009年02月27号 -- <a href="http://ourapache.com/archives/190" title="header Content-Disposition参数说明">header Content-Disposition参数说明</a></li><li>2009年08月13号 -- <a href="http://ourapache.com/archives/273" title="Apache和IIS共享80端口的四个方法">Apache和IIS共享80端口的四个方法</a></li><li>2009年08月16号 -- <a href="http://ourapache.com/archives/292" title="Apache两种运行方式比较:Standalone和inetd">Apache两种运行方式比较:Standalone和inetd</a></li><li>2009年02月22号 -- <a href="http://ourapache.com/archives/161" title="在Windows上手动配置Apache下面的虚拟主机站点">在Windows上手动配置Apache下面的虚拟主机站点</a></li><li>2010年03月9号 -- <a href="http://ourapache.com/archives/318" title="Apache2中俩种设置PHP的异同">Apache2中俩种设置PHP的异同</a></li><li>2009年06月7号 -- <a href="http://ourapache.com/archives/251" title="apxs是Apache编译和安装扩展模块的工具">apxs是Apache编译和安装扩展模块的工具</a></li><li>2009年02月7号 -- <a href="http://ourapache.com/archives/87" title="Linux下查看apache连接数">Linux下查看apache连接数</a></li><li>2009年02月10号 -- <a href="http://ourapache.com/archives/121" title="apache 无法启动故障排查">apache 无法启动故障排查</a></li><li>2009年02月27号 -- <a href="http://ourapache.com/archives/206" title="http header详解">http header详解</a></li><li>2008年12月27号 -- <a href="http://ourapache.com/archives/15" title="Apache服务器限制并发连接和下载速度">Apache服务器限制并发连接和下载速度</a></li></ul>
	标签：<a href="http://ourapache.com/archives/tag/meta" title="meta" rel="tag">meta</a>, <a href="http://ourapache.com/archives/category/uncategorized" title="未分类" rel="tag">未分类</a><br />
]]></content:encoded>
			<wfw:commentRss>http://ourapache.com/archives/126/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

