<?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>Humker的天空 &#187; apache</title>
	<atom:link href="http://www.humker.com/tag/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.humker.com</link>
	<description>健康，快乐。</description>
	<lastBuildDate>Wed, 25 Jan 2012 12:16:34 +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>apache中文url的理解</title>
		<link>http://www.humker.com/2008/05/12/apache-chinese-url/</link>
		<comments>http://www.humker.com/2008/05/12/apache-chinese-url/#comments</comments>
		<pubDate>Mon, 12 May 2008 17:50:59 +0000</pubDate>
		<dc:creator>humker</dc:creator>
				<category><![CDATA[网站建设]]></category>
		<category><![CDATA[apache]]></category>

		<guid isPermaLink="false">http://www.humker.com/?p=72</guid>
		<description><![CDATA[通过apache下载url中含有中文的目录或文件会出现404错误，经查看是因为apache对中文url的支持有问题。1.IE访问WEB的简单顺序为：IE&#60;-&#62;apache&#60;-&#62;文件系统即IE向apache发送URL请求，该请求是通过某种编码做了encode的，apache接到请求后对其进行解码，然后再用解码后的地址到文件系统获取请求的内容返回到客户端的IE。从以上顺序可以看出，如果要正常使用中文路径的URL，必须保证:1,IE端到apache端的URL请求的编码和解码的字符集必须一致，2,apache到文件系统获取中文路径内容使用的字符集也要跟文件系统的文件名的编码一致。 2.ext2、ext3等文件系统（ufs文件系统估计也是）不像ntfs或者fat32文件系统，前者文件名是用原码的，不作任何编码，而后者是通过Unicode编码的，故而在win机器上的apache到文件系统获取中文路径的文件的问题不大，但是在Linux/Unix上，就必须保证使用正确的字符编码才能正确访问中文路径了。 3.IE默认是通过UTF8发送URL请求的，如果不想用UTF-8，即必须修改IE的配置，具体方法是IE选项-&#62;高级-&#62;不选总是以UTF-8发送URL。 4.ftp协议一般都是通过GBK编码作为路径编码传输文件的，故而要正确访问ext2、ext3经过ftp传输的中文路径文件，必须使用GBK才能正确访问到，用zh_CN.GB18030编码可以成功访问。]]></description>
			<content:encoded><![CDATA[<p>通过apache下载url中含有中文的目录或文件会出现404错误，经查看是因为apache对中文url的支持有问题。<br />1.IE访问WEB的简单顺序为：<br />IE&lt;-&gt;apache&lt;-&gt;文件系统<br />即IE向apache发送URL请求，该请求是通过某种编码做了encode的，apache接到请求后对其进行解码，然后再用解码后的地址到文件系统获取请求的内容返回到客户端的IE。<br />从以上顺序可以看出，如果要正常使用中文路径的URL，必须保证:<br />1,IE端到apache端的URL请求的编码和解码的字符集必须一致，<br />2,apache到文件系统获取中文路径内容使用的字符集也要跟文件系统的文件名的编码一致。</p>
<p>2.ext2、ext3等文件系统（ufs文件系统估计也是）不像ntfs或者fat32文件系统，前者文件名是用原码的，不作任何编码，而后者是通过Unicode编码的，故而在win机器上的apache到文件系统获取中文路径的文件的问题不大，但是在Linux/Unix上，就必须保证使用正确的字符编码才能正确访问中文路径了。</p>
<p>3.IE默认是通过UTF8发送URL请求的，如果不想用UTF-8，即必须修改IE的配置，具体方法是IE选项-&gt;高级-&gt;不选总是以UTF-8发送URL。</p>
<p>4.ftp协议一般都是通过GBK编码作为路径编码传输文件的，故而要正确访问ext2、ext3经过ftp传输的中文路径文件，必须使用GBK才能正确访问到，用zh_CN.GB18030编码可以成功访问。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.humker.com/2008/05/12/apache-chinese-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xubuntu8.04编译安装apache</title>
		<link>http://www.humker.com/2008/05/09/ubuntu-apache-compile-install/</link>
		<comments>http://www.humker.com/2008/05/09/ubuntu-apache-compile-install/#comments</comments>
		<pubDate>Fri, 09 May 2008 20:02:41 +0000</pubDate>
		<dc:creator>humker</dc:creator>
				<category><![CDATA[网站建设]]></category>
		<category><![CDATA[apache]]></category>

		<guid isPermaLink="false">http://www.humker.com/?p=69</guid>
		<description><![CDATA[参考帖子 http://cpccai.javaeye.com/blog/150180 提示有错 configure: error: C compiler cannot create executables&#160; &#160; make: *** 没有指明目标并且找不到 makefile &#160;在新立得里搜apr安装相关的包 参考帖子中的命令如果不能运行，在前面加sudo。]]></description>
			<content:encoded><![CDATA[<p>参考帖子</p>
<p>http://cpccai.javaeye.com/blog/150180</p>
<p>提示有错</p>
<p><span class="postbody">configure: error: C compiler cannot create executables&nbsp;</span></p>
<table border="0" cellspacing="2" cellpadding="2" width="100%">
<tbody>
<tr>
<td rowspan="2" align="center">&nbsp;</td>
</tr>
<tr>
<td colspan="2" width="100%" align="left" valign="bottom"><span class="maintitle">make: *** 没有指明目标并且找不到 makefile</span></td>
</tr>
</tbody>
</table>
<p>&nbsp;在新立得里搜apr安装相关的包</p>
<p>参考帖子中的命令如果不能运行，在前面加sudo。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.humker.com/2008/05/09/ubuntu-apache-compile-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

