<?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>ls /proc &#187; http</title>
	<atom:link href="http://www.lsproc.com/blog/tag/http/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lsproc.com/blog</link>
	<description>lsproc.com</description>
	<lastBuildDate>Fri, 21 May 2010 14:29:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Apache 2.x 基于主机名的虚拟主机</title>
		<link>http://www.lsproc.com/blog/apache2x_name_based_virtual_hosting/</link>
		<comments>http://www.lsproc.com/blog/apache2x_name_based_virtual_hosting/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 14:59:28 +0000</pubDate>
		<dc:creator>lostsnow</dc:creator>
				<category><![CDATA[Linux&Webserver]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[虚拟主机]]></category>

		<guid isPermaLink="false">http://www.lostk.com/blog/apache2x_name_based_virtual_hosting/</guid>
		<description><![CDATA[转载时请标明文章原始出处和作者信息, 作者: lostsnow.http://www.lsproc.com/blog/apache2x_name_based_virtual_hosting/
NameVirtualHost *:80

&#60;VirtualHost *:80&#62;
ServerName a.lostk.com
DocumentRoot e:/webserver/htdocs/a
ErrorLog e:/webserver/apache/logs/a.lost-error.log
CustomLog e:/webserver/apache/logs/a.lost-access.log common
    &#60;Directory &#34;e:/webserver/htdocs/a&#34;&#62;
        Options Indexes FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
   [...]]]></description>
			<content:encoded><![CDATA[<p>转载时请标明文章原始出处和作者信息, 作者: <a href="http://www.lsproc.com/blog/">lostsnow</a>.<br /><a href="http://www.lsproc.com/blog/apache2x_name_based_virtual_hosting/">http://www.lsproc.com/blog/apache2x_name_based_virtual_hosting/</a></p>
<pre class="brush: text">NameVirtualHost *:80

&lt;VirtualHost *:80&gt;
ServerName a.lostk.com
DocumentRoot e:/webserver/htdocs/a
ErrorLog e:/webserver/apache/logs/a.lost-error.log
CustomLog e:/webserver/apache/logs/a.lost-access.log common
    &lt;Directory &quot;e:/webserver/htdocs/a&quot;&gt;
        Options Indexes FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
    &lt;/Directory&gt;
&lt;/VirtualHost&gt;

&lt;VirtualHost *:80&gt;
ServerName b.lostk.com
DocumentRoot e:/webserver/htdocs/b
ErrorLog e:/webserver/apache/logs/b.lost-error.log
CustomLog e:/webserver/apache/logs/b.lost-access.log common
    &lt;Directory &quot;e:/webserver/htdocs/b&quot;&gt;
        Options Indexes FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
    &lt;/Directory&gt;
&lt;/VirtualHost&gt;</pre>
<p>-- EOF --</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>2008-03-21 -- <a href="http://www.lsproc.com/blog/useful_apache_urlrewrite/" title="一些有用apache重写规则">一些有用apache重写规则</a> (0)</li><li>2008-03-18 -- <a href="http://www.lsproc.com/blog/configure_lamp/" title="lamp 相关配置 [Debian]">lamp 相关配置 [Debian]</a> (2)</li><li>2008-03-05 -- <a href="http://www.lsproc.com/blog/htaccess_error_on_apache/" title="apache下htaccess的Invalid command &#8216;AuthUserFile&#8217;错误">apache下htaccess的Invalid command &#8216;AuthUserFile&#8217;错误</a> (0)</li><li>2008-03-01 -- <a href="http://www.lsproc.com/blog/close_timewait_connection/" title="如何关闭time_wait连接">如何关闭time_wait连接</a> (4)</li><li>2007-06-02 -- <a href="http://www.lsproc.com/blog/port_443_used_by_qq/" title="QQ居然占用443端口">QQ居然占用443端口</a> (9)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.lsproc.com/blog/apache2x_name_based_virtual_hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTTP状态列表</title>
		<link>http://www.lsproc.com/blog/http-status-list/</link>
		<comments>http://www.lsproc.com/blog/http-status-list/#comments</comments>
		<pubDate>Wed, 15 Mar 2006 02:15:27 +0000</pubDate>
		<dc:creator>lostsnow</dc:creator>
				<category><![CDATA[Linux&Webserver]]></category>
		<category><![CDATA[http]]></category>

		<guid isPermaLink="false">http://lost.yi.org/blog/webdesign/http-status-list/</guid>
		<description><![CDATA[转载时请标明文章原始出处和作者信息, 作者: lostsnow.http://www.lsproc.com/blog/http-status-list/
响应码由三位十进制数字组成，它们出现在由HTTP服务器发送的响应的第一行。
响应码分五种类型，由它们的第一位数字表示：
1xx：信息，请求收到，继续处理
2xx：成功，行为被成功地接受、理解和采纳
3xx：重定向，为了完成请求，必须进一步执行的动作
4xx：客户端错误，请求包含语法错误或者请求无法实现
5xx：服务器错误，服务器不能实现一种明显无效的请求
下表显示每个响应码及其含义：
100 => "HTTP/1.1 100 Continue"
101 => "HTTP/1.1 101 Switching Protocols"
200 => "HTTP/1.1 200 OK"
201 => "HTTP/1.1 201 Created"
202 => "HTTP/1.1 202 Accepted"
203 => "HTTP/1.1 203 Non-Authoritative Information"
204 => "HTTP/1.1 204 No Content"
205 => "HTTP/1.1 205 Reset Content"
206 => "HTTP/1.1 206 Partial Content"
300 => "HTTP/1.1 300 Multiple Choices"
301 => "HTTP/1.1 301 Moved Permanently"
302 => [...]]]></description>
			<content:encoded><![CDATA[<p>转载时请标明文章原始出处和作者信息, 作者: <a href="http://www.lsproc.com/blog/">lostsnow</a>.<br /><a href="http://www.lsproc.com/blog/http-status-list/">http://www.lsproc.com/blog/http-status-list/</a></p>
<p>响应码由三位十进制数字组成，它们出现在由HTTP服务器发送的响应的第一行。</p>
<p>响应码分五种类型，由它们的第一位数字表示：<br />
1xx：信息，请求收到，继续处理<br />
2xx：成功，行为被成功地接受、理解和采纳<br />
3xx：重定向，为了完成请求，必须进一步执行的动作<br />
4xx：客户端错误，请求包含语法错误或者请求无法实现<br />
5xx：服务器错误，服务器不能实现一种明显无效的请求</p>
<p>下表显示每个响应码及其含义：</p>
<blockquote><p>100 => "HTTP/1.1 100 Continue"<br />
101 => "HTTP/1.1 101 Switching Protocols"<br />
200 => "HTTP/1.1 200 OK"<br />
201 => "HTTP/1.1 201 Created"<br />
202 => "HTTP/1.1 202 Accepted"<br />
203 => "HTTP/1.1 203 Non-Authoritative Information"<br />
204 => "HTTP/1.1 204 No Content"<br />
205 => "HTTP/1.1 205 Reset Content"<br />
206 => "HTTP/1.1 206 Partial Content"<br />
300 => "HTTP/1.1 300 Multiple Choices"<br />
301 => "HTTP/1.1 301 Moved Permanently"<br />
302 => "HTTP/1.1 302 Found"<br />
303 => "HTTP/1.1 303 See Other"<br />
304 => "HTTP/1.1 304 Not Modified"<br />
305 => "HTTP/1.1 305 Use Proxy"<br />
307 => "HTTP/1.1 307 Temporary Redirect"<br />
400 => "HTTP/1.1 400 Bad Request"<br />
401 => "HTTP/1.1 401 Unauthorized"<br />
402 => "HTTP/1.1 402 Payment Required"<br />
403 => "HTTP/1.1 403 Forbidden"<br />
404 => "HTTP/1.1 404 Not Found"<br />
405 => "HTTP/1.1 405 Method Not Allowed"<br />
406 => "HTTP/1.1 406 Not Acceptable"<br />
407 => "HTTP/1.1 407 Proxy Authentication Required"<br />
408 => "HTTP/1.1 408 Request Time-out"<br />
409 => "HTTP/1.1 409 Conflict"<br />
410 => "HTTP/1.1 410 Gone"<br />
411 => "HTTP/1.1 411 Length Required"<br />
412 => "HTTP/1.1 412 Precondition Failed"<br />
413 => "HTTP/1.1 413 Request Entity Too Large"<br />
414 => "HTTP/1.1 414 Request-URI Too Large"<br />
415 => "HTTP/1.1 415 Unsupported Media Type"<br />
416 => "HTTP/1.1 416 Requested range not satisfiable"<br />
417 => "HTTP/1.1 417 Expectation Failed"<br />
500 => "HTTP/1.1 500 Internal Server Error"<br />
501 => "HTTP/1.1 501 Not Implemented"<br />
502 => "HTTP/1.1 502 Bad Gateway"<br />
503 => "HTTP/1.1 503 Service Unavailable"<br />
504 => "HTTP/1.1 504 Gateway Time-out"</p></blockquote>
<blockquote><p>100 继续<br />
101 分组交换协<br />
200 OK<br />
201 被创建<br />
202 被采纳<br />
203 非授权信息<br />
204 无内容<br />
205 重置内容<br />
206 部分内容<br />
300 多选项<br />
301 永久地传送<br />
302 找到<br />
303 参见其他<br />
304 未改动<br />
305 使用代理<br />
307 暂时重定向<br />
400 错误请求<br />
401 未授权<br />
402 要求付费<br />
403 禁止<br />
404 未找到<br />
405 不允许的方法<br />
406 不被采纳<br />
407 要求代理授权<br />
408 请求超时<br />
409 冲突<br />
410 过期的<br />
411 要求的长度<br />
412 前提不成立<br />
413 请求实例太大<br />
414 请求URI太大<br />
415 不支持的媒体类型<br />
416 无法满足的请求范围<br />
417 失败的预期<br />
500 内部服务器错误<br />
501 未被使用<br />
502 网关错误<br />
503 不可用的服务<br />
504 网关超时<br />
505 HTTP版本未被支持</p></blockquote>
<p>-- EOF --</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>2007-12-10 -- <a href="http://www.lsproc.com/blog/apache2x_name_based_virtual_hosting/" title="Apache 2.x 基于主机名的虚拟主机">Apache 2.x 基于主机名的虚拟主机</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.lsproc.com/blog/http-status-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
