<?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>深蓝的blog &#187; http</title>
	<atom:link href="http://www.lanxinbase.com/?feed=rss2&#038;tag=http" rel="self" type="application/rss+xml" />
	<link>http://www.lanxinbase.com</link>
	<description>记录日常生活</description>
	<lastBuildDate>Sat, 18 Apr 2026 07:10:07 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.2.3</generator>
	<item>
		<title>HTTP状态码（记录）</title>
		<link>http://www.lanxinbase.com/?p=2442</link>
		<comments>http://www.lanxinbase.com/?p=2442#comments</comments>
		<pubDate>Thu, 31 Oct 2019 01:29:09 +0000</pubDate>
		<dc:creator><![CDATA[Alan]]></dc:creator>
				<category><![CDATA[1.服务端语言]]></category>
		<category><![CDATA[4.PHP后端开发]]></category>
		<category><![CDATA[5.互联网应用开发]]></category>
		<category><![CDATA[C/C++]]></category>
		<category><![CDATA[go语言]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[状态码]]></category>

		<guid isPermaLink="false">http://www.lanxinbase.com/?p=2442</guid>
		<description><![CDATA[HTTP状态码总的分为五类： 1开头：信息状态码 2开头：成功状态码 3开头：重定向状态码 4开头：客户端错误 [&#8230;]]]></description>
		<wfw:commentRss>http://www.lanxinbase.com/?feed=rss2&#038;p=2442</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>http session解释</title>
		<link>http://www.lanxinbase.com/?p=1643</link>
		<comments>http://www.lanxinbase.com/?p=1643#comments</comments>
		<pubDate>Mon, 10 Apr 2017 03:34:46 +0000</pubDate>
		<dc:creator><![CDATA[Alan]]></dc:creator>
				<category><![CDATA[4.PHP后端开发]]></category>
		<category><![CDATA[6.前端开发]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[http session]]></category>
		<category><![CDATA[session]]></category>

		<guid isPermaLink="false">http://www.lanxinbase.com/?p=1643</guid>
		<description><![CDATA[Web服务器跟踪客户状态通常有四种方法： 1，建立含有跟踪数据的隐藏字段  type=hidden 2，重写包 [&#8230;]]]></description>
		<wfw:commentRss>http://www.lanxinbase.com/?feed=rss2&#038;p=1643</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTTP错误代码大全</title>
		<link>http://www.lanxinbase.com/?p=1372</link>
		<comments>http://www.lanxinbase.com/?p=1372#comments</comments>
		<pubDate>Wed, 07 Dec 2016 07:37:08 +0000</pubDate>
		<dc:creator><![CDATA[Alan]]></dc:creator>
				<category><![CDATA[2.运维相关]]></category>
		<category><![CDATA[5.互联网应用开发]]></category>
		<category><![CDATA[404]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[http代码]]></category>
		<category><![CDATA[Nginx]]></category>

		<guid isPermaLink="false">http://www.lanxinbase.com/?p=1372</guid>
		<description><![CDATA[200 （成功） 服务器已成功处理了请求。通常，这表示服务器提供了请求的网页。
201 （已创建） 请求成功并且服务器创建了新的资源。
202 （已接受） 服务器已接受请求，但尚未处理。
203 （非授权信息） 服务器已成功处理了请求，但返回的信息可能来自另一来源。
204 （无内容） 服务器成功处理了请求，但没有返回任何内容。
205 （重置内容） 服务器成功处理了请求，但没有返回任何内容。
206 （部分内容） 服务器成功处理了部分 GET 请求。]]></description>
		<wfw:commentRss>http://www.lanxinbase.com/?feed=rss2&#038;p=1372</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AngularJS中$http、$httpProvider、$resource操作笔记</title>
		<link>http://www.lanxinbase.com/?p=1340</link>
		<comments>http://www.lanxinbase.com/?p=1340#comments</comments>
		<pubDate>Sun, 09 Oct 2016 08:43:15 +0000</pubDate>
		<dc:creator><![CDATA[Alan]]></dc:creator>
				<category><![CDATA[5.互联网应用开发]]></category>
		<category><![CDATA[6.前端开发]]></category>
		<category><![CDATA[$resource]]></category>
		<category><![CDATA[Angular]]></category>
		<category><![CDATA[AngularJS]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[httpProvider]]></category>

		<guid isPermaLink="false">http://www.lanxinbase.com/?p=1340</guid>
		<description><![CDATA[1.设置httpProvider头

var app = angular.module("Myapp", ['ngRoute'])
        .config(['$locationProvider','apikey',function($locationProvider,apikey){
            $locationProvider.html5Mode(false);
            $locationProvider.hashPrefix("!")
        }])
        .config(function ($routeProvider,$httpProvider) {
            //设置http头
            $httpProvider.defaults.headers.common["X-Response-Code-By"] = "Angular1.3.8";]]></description>
		<wfw:commentRss>http://www.lanxinbase.com/?feed=rss2&#038;p=1340</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
