<?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>登高望远 &#187; apache</title>
	<atom:link href="http://www.dengor.com/archives/tag/apache/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dengor.com</link>
	<description>努力往上  只为看得更远一点点......</description>
	<lastBuildDate>Mon, 06 Feb 2012 08:59:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>prestashop在lnmpa下图片不显示问题</title>
		<link>http://www.dengor.com/archives/1291.html</link>
		<comments>http://www.dengor.com/archives/1291.html#comments</comments>
		<pubDate>Thu, 08 Sep 2011 01:07:07 +0000</pubDate>
		<dc:creator>dengor</dc:creator>
				<category><![CDATA[网站程序]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[lnmp]]></category>
		<category><![CDATA[lnmpa]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[prestashop]]></category>

		<guid isPermaLink="false">http://www.dengor.com/?p=1291</guid>
		<description><![CDATA[Lnmpa是Lnmp的一个扩展,使用Nginx作为前端服务能够更快更及时的静态页面、js、图片等，由nginx接爱请求, 当客户端请求访问动态页面时由Nginx的反向代理给Apache处理，Apache处理完再交予Nginx返回给客户端。这样能大大优化服务器的性能. 最近在迁移中出再了prestashop在lnma下图片不显示问题, 因为原来prestashop的重写规则是在nginx, 现在Lnmpa就全部用apache下的.htaccess来实现重写. 但问题也出来了. 其它的一切都正常, 就是图片不显示. 仔细想了一下,一定是出在.jpg图片在重写上面, 要在nginx的重写规则中加入 rewrite ^/([a-z0-9]+)\-([a-z0-9]+)(\-[_a-zA-Z0-9-]*)/([_a-zA-Z0-9-]*)\.jpg$ /img/p/$1-$2$3.jpg last; rewrite ^/([0-9]+)\-([0-9]+)/([_a-zA-Z0-9-]*)\.jpg$ /img/p/$1-$2.jpg last; rewrite ^/([0-9]+)(\-[_a-zA-Z0-9-]*)/([_a-zA-Z0-9-]*)\.jpg$ /img/c/$1$2.jpg last; 这样图片就会重写了.能够正确的显示出来. 原来Lnmpa是把动态的处理交给apache, 而对于静态的CSS,jpg等还是Nginx在处理. 所以JPG的重写也应该写在nginx的.conf文件中. 所有的处理都是先交给nginx来接受, 由nginx来判断是自己去处理还是交给apache, 而这里因为是JPG图片, nginx自己去处理, 在.htaccess的重写是无效的. [转载请注明出处]: 登高望远 [ http://www.dengor.com/archives/1291.html ] 相关文章lnmp安装后进程优化Nginx(LNMP)反向代理配置教程[转]实现Prestashop在nginx中的url重写Apach中.htaccess一些常用的url重写更新源问题导致debian6下Lnmp无法安装成功[转]prestashop 1.4.4的lighttpd rewrite规则让nginx按域名来反向代理Nginx出现502后自动重启脚本Prestashop设置Pre-defined message不换行问题让lnmp能用mail()函数来发邮件]]></description>
			<content:encoded><![CDATA[<p>Lnmpa是Lnmp的一个扩展,使用Nginx作为前端服务能够更快更及时的静态页面、js、图片等，由nginx接爱请求, 当客户端请求访问动态页面时由<a href="http://www.dengor.com/archives/tag/nginx">Nginx</a>的反向代理给Apache处理，Apache处理完再交予Nginx返回给客户端。这样能大大优化服务器的性能.</p>
<p>最近在迁移中出再了<a href="http://www.dengor.com/archives/tag/prestashop">prestashop</a>在lnma下图片不显示问题, 因为原来prestashop的重写规则是在nginx, 现在Lnmpa就全部用apache下的.htaccess来实现重写. 但问题也出来了. 其它的一切都正常, 就是图片不显示.</p>
<p><span id="more-1291"></span>仔细想了一下,一定是出在.jpg图片在重写上面, 要在nginx的重写规则中加入</p>
<blockquote><p>rewrite ^/([a-z0-9]+)\-([a-z0-9]+)(\-[_a-zA-Z0-9-]*)/([_a-zA-Z0-9-]*)\.jpg$ /img/p/$1-$2$3.jpg last;<br />
rewrite ^/([0-9]+)\-([0-9]+)/([_a-zA-Z0-9-]*)\.jpg$ /img/p/$1-$2.jpg last;<br />
rewrite ^/([0-9]+)(\-[_a-zA-Z0-9-]*)/([_a-zA-Z0-9-]*)\.jpg$ /img/c/$1$2.jpg last;</p></blockquote>
<p>这样图片就会重写了.能够正确的显示出来.</p>
<p><strong>原来Lnmpa是把动态的处理交给apache, 而对于静态的CSS,jpg等还是Nginx在处理. 所以JPG的重写也应该写在nginx的.conf文件中</strong>.</p>
<p>所有的处理都是先交给nginx来接受, 由nginx来判断是自己去处理还是交给apache, 而这里因为是JPG图片, nginx自己去处理, 在.htaccess的重写是无效的.</p>
<p><span style="color: #800000;">[转载请注明出处]:</span> <a href="../">登高望远</a> [ <a href="http://www.dengor.com/archives/1291.html">http://www.dengor.com/archives/1291.html</a> ]</p>
<div  class="related_post_title">相关文章</div><ul class="related_post"><li><a href="http://www.dengor.com/archives/1301.html" title="lnmp安装后进程优化">lnmp安装后进程优化</a></li><li><a href="http://www.dengor.com/archives/1267.html" title="Nginx(LNMP)反向代理配置教程[转]">Nginx(LNMP)反向代理配置教程[转]</a></li><li><a href="http://www.dengor.com/archives/931.html" title="实现Prestashop在nginx中的url重写">实现Prestashop在nginx中的url重写</a></li><li><a href="http://www.dengor.com/archives/408.html" title="Apach中.htaccess一些常用的url重写">Apach中.htaccess一些常用的url重写</a></li><li><a href="http://www.dengor.com/archives/1356.html" title="更新源问题导致debian6下Lnmp无法安装成功">更新源问题导致debian6下Lnmp无法安装成功</a></li><li><a href="http://www.dengor.com/archives/1358.html" title="[转]prestashop 1.4.4的lighttpd rewrite规则">[转]prestashop 1.4.4的lighttpd rewrite规则</a></li><li><a href="http://www.dengor.com/archives/1317.html" title="让nginx按域名来反向代理">让nginx按域名来反向代理</a></li><li><a href="http://www.dengor.com/archives/1255.html" title="Nginx出现502后自动重启脚本">Nginx出现502后自动重启脚本</a></li><li><a href="http://www.dengor.com/archives/1210.html" title="Prestashop设置Pre-defined message不换行问题">Prestashop设置Pre-defined message不换行问题</a></li><li><a href="http://www.dengor.com/archives/1205.html" title="让lnmp能用mail()函数来发邮件">让lnmp能用mail()函数来发邮件</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.dengor.com/archives/1291.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Apach中.htaccess一些常用的url重写</title>
		<link>http://www.dengor.com/archives/408.html</link>
		<comments>http://www.dengor.com/archives/408.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 16:31:02 +0000</pubDate>
		<dc:creator>dengor</dc:creator>
				<category><![CDATA[其它东西]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[ap]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[重写]]></category>

		<guid isPermaLink="false">http://www.dengor.com/?p=408</guid>
		<description><![CDATA[&#160; &#160;&#160; .htaccess对于Apach虚拟主机来说很有用. 很多网站功能可以通过url重写来实现, 学习一点正则表达式对理解重写规则很有好处. 看看常用的url重写规则也能加深理解. 这里收集一些常用的规则学习和备用. 把不带www的url重写到有www: RewriteEngine On RewriteBase / # Redirect non-www to www RewriteCond %{HTTP_HOST} !^www\. RewriteRule (.*) http://www.5dmp.com/$1 [R=301,L] 自己的一个需求, 把短目录定向到指定文件: RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule !^webcard.* &#8211; [C] RewriteRule ^(\w*)/*$ /webcard/$1.html [L] 二级域名到用户目录: RewriteEngine on RewriteCond&#160;&#160; %{HTTP_HOST}&#160;&#160;&#160;&#160;&#160;&#160;&#160; ^www\.[^.]+\.host\.com$ RewriteRule&#160;&#160; ^(.+)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; %{HTTP_HOST}$1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [C] RewriteRule&#160;&#160; [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp; &nbsp;&nbsp; .htaccess对于Apach虚拟主机来说很有用. 很多网站功能可以通过url重写来实现, <a href="http://www.dengor.com/archives/591.html">学习一点正则表达式</a>对理解重写规则很有好处. 看看常用的url重写规则也能加深理解. 这里收集一些常用的规则学习和备用.</p>
<p><span id="more-408"></span></p>
<p>把不带www的url重写到有www:</p>
<blockquote>
<p>RewriteEngine On<br />
		RewriteBase /<br />
		# Redirect non-www to www<br />
		RewriteCond %{HTTP_HOST} !^www\.<br />
		RewriteRule (.*) http://www.5dmp.com/$1 [R=301,L]</p>
</blockquote>
<p>自己的一个需求, 把短目录定向到指定文件:</p>
<blockquote>
<p>RewriteEngine On<br />
		RewriteBase /<br />
		RewriteCond %{REQUEST_FILENAME} !-f<br />
		RewriteCond %{REQUEST_FILENAME} !-d<br />
		RewriteRule !^webcard.* &#8211; [C]<br />
		RewriteRule ^(\w*)/*$ /webcard/$1.html [L]</p>
</blockquote>
<p>二级域名到用户目录:</p>
<blockquote>
<p>RewriteEngine on<br />
		RewriteCond&nbsp;&nbsp; %{HTTP_HOST}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^www\.[^.]+\.host\.com$<br />
		RewriteRule&nbsp;&nbsp; ^(.+)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; %{HTTP_HOST}$1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [C]<br />
		RewriteRule&nbsp;&nbsp; ^www\.([^.]+)\.host\.com(.*) /home/$1$2<br />
		&nbsp;</p>
</blockquote>
<p>加斜杠:</p>
<blockquote><pre>RewriteEngine  on
RewriteBase    /~quux/
RewriteCond    %{REQUEST_FILENAME}  <strong>-d</strong>
RewriteRule    ^(.+<strong>[^/]</strong>)$           $1<strong>/</strong>  [R]
</pre>
</blockquote>
<p>禁止图片盗链:</p>
<blockquote>
<p>RewriteEngine on <br />
		RewriteCond %{HTTP_REFERER} !^$ <br />
		RewriteCond %{HTTP_REFERER} !^http://(www\.)?dnzs123.com /.*$ [NC] <br />
		RewriteRule \.(gif|jpg)$ http://www.dnzs123.com/abc.gif [R,L]</p>
</blockquote>
<p>伪静态,&nbsp; 这里有一个<a href="http://www.dengor.com/archives/511.html" title="DEDE开启伪静态的重写设置">DEDE开启伪静态的重写设置</a> 下面是discuz的重写规则:</p>
<blockquote>
<p>RewriteEngine On <br />
		RewriteRule ^(.*)/archiver/((fid|tid)-[\w\-]+\.html)$ $1/archiver/index.php?$2 <br />
		RewriteRule ^(.*)/forum-([0-9]+)-([0-9]+)\.html$ $1/forumdisplay.php?fid=$2&amp;page=$3 <br />
		RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/viewthread.php?tid=$2&amp;extra=page\%3D$4&amp;page=$3 <br />
		RewriteRule ^(.*)/space-(username|uid)-(.+)\.html$ $1/space.php?$2=$3 <br />
		RewriteRule ^/home/(space|network)-(.+)\.html$ /home/$1\.php\?rewrite=$2 <br />
		RewriteRule ^/home/(space|network)\.html$ /home/$1\.php <br />
		RewriteRule ^/home/([0-9]+)$ /home/space\.php\?uid=$1 <br />
		RewriteRule ^(.*)/tag-(.+)\.html$ $1/tag.php?name=$2</p>
</blockquote>
<p>还有很多的地方可以用到url重写. 无法一一例举.</p>
<div  class="related_post_title">相关文章</div><ul class="related_post"><li><a href="http://www.dengor.com/archives/1291.html" title="prestashop在lnmpa下图片不显示问题">prestashop在lnmpa下图片不显示问题</a></li><li><a href="http://www.dengor.com/archives/511.html" title="DEDE开启伪静态的重写设置">DEDE开启伪静态的重写设置</a></li><li><a href="http://www.dengor.com/archives/1358.html" title="[转]prestashop 1.4.4的lighttpd rewrite规则">[转]prestashop 1.4.4的lighttpd rewrite规则</a></li><li><a href="http://www.dengor.com/archives/1100.html" title="Nginx下把no-www转向到www的重写规则">Nginx下把no-www转向到www的重写规则</a></li><li><a href="http://www.dengor.com/archives/931.html" title="实现Prestashop在nginx中的url重写">实现Prestashop在nginx中的url重写</a></li><li><a href="http://www.dengor.com/archives/208.html" title="本地架设服务器设置多个虚拟主机">本地架设服务器设置多个虚拟主机</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.dengor.com/archives/408.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>本地架设服务器设置多个虚拟主机</title>
		<link>http://www.dengor.com/archives/208.html</link>
		<comments>http://www.dengor.com/archives/208.html#comments</comments>
		<pubDate>Tue, 25 Aug 2009 16:47:54 +0000</pubDate>
		<dc:creator>dengor</dc:creator>
				<category><![CDATA[网站程序]]></category>
		<category><![CDATA[AMP]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[服务器]]></category>
		<category><![CDATA[虚拟主机]]></category>

		<guid isPermaLink="false">http://www.dengor.com/?p=208</guid>
		<description><![CDATA[&#160;&#160;&#160;&#160; 很多网站项目都要在本地测试，再放到服务器上去。 所以在本地架设AMP服务器是很有必要的，我想只要有点基础的朋友，都知道应该怎么去架设。 但很多时候有多个网站在本也测试时，我想很多朋友都会把网站放在根目录下的不同文件夹中。这样一来网站的地址就会目录，要我们直接放上服务器上有区别，本地文件上传到服务器时还要修改一些设置。 &#160;&#160;&#160; 有没有想过，在本地测试时，我们就用不同的测试主机，这样对网站来说都在根目录下面。会少了很多网站上传后的目录方面的麻烦。 要解决这个问题，就要在本地架设多个虚拟主机。 &#160;&#160; 本架设多个虚拟主机其实也很简单，只要把Apache配置一下就行了。 &#160;&#160; 我们知道Apache的配置都是在httpd.conf文件设置。我们在文件的最后加上以下代码： &#60;VirtualHost *:80&#62; &#160;ServerName 192.168.1.85 &#160;ServerAlias 192.168.1.85 &#160;DocumentRoot &#34;D:/www/htdocs/85&#34; &#60;Directory &#34;D:/www/htdocs/85&#34;&#62; &#160;Options All ExecCGI FollowSymLinks Includes IncludesNOEXEC Indexes MultiViews &#160;DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.shtml index.aspx default.aspx&#160; &#160;AllowOverride All &#160;Order Deny,Allow &#160;Allow from all &#160;RewriteEngine On &#60;/Directory&#62; &#60;/VirtualHost&#62; &#160;&#160;&#160; &#60;VirtualHost *:80&#62;&#60;/VirtualHost&#62;就是配置一个虚拟主机，里面设置服务的地址和目录还有一些权限参数，重启Apach设置就生效了。我们就可以通过上面的设置 ServerName来访问这个虚拟主机，本例中是 [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;&nbsp;&nbsp;&nbsp; 很多网站项目都要在本地测试，再放到服务器上去。 所以在本地架设AMP服务器是很有必要的，我想只要有点基础的朋友，都知道应该怎么去架设。 但很多时候有多个网站在本也测试时，我想很多朋友都会把网站放在根目录下的不同文件夹中。这样一来网站的地址就会目录，要我们直接放上服务器上有区别，本地文件上传到服务器时还要修改一些设置。</p>
<p>&nbsp;&nbsp;&nbsp; 有没有想过，在本地测试时，我们就用不同的测试主机，这样对网站来说都在根目录下面。会少了很多网站上传后的目录方面的麻烦。 要解决这个问题，就要在本地架设多个虚拟主机。</p>
<p><span id="more-208"></span></p>
<p>&nbsp;&nbsp; <strong>本架设多个虚拟主机其实也很简单，只要把Apache配置一下就行了</strong>。</p>
<p>&nbsp;&nbsp; 我们知道Apache的配置都是在<u><span style="color: rgb(51, 102, 255);">httpd.conf</span></u>文件设置。我们在文件的最后加上以下代码：</p>
<pre>
&lt;VirtualHost *:80&gt;

&nbsp;ServerName 192.168.1.85

&nbsp;ServerAlias 192.168.1.85

&nbsp;DocumentRoot &quot;D:/www/htdocs/85&quot;

&lt;Directory &quot;D:/www/htdocs/85&quot;&gt;

&nbsp;Options All ExecCGI FollowSymLinks Includes IncludesNOEXEC Indexes MultiViews

&nbsp;DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.shtml index.aspx default.aspx&nbsp; 

&nbsp;AllowOverride All 

&nbsp;Order Deny,Allow 

&nbsp;Allow from all 

&nbsp;RewriteEngine On

&lt;/Directory&gt;

&lt;/VirtualHost&gt;</pre>
<p>&nbsp;&nbsp;&nbsp; &lt;VirtualHost *:80&gt;&lt;/VirtualHost&gt;就是配置一个虚拟主机，里面设置服务的地址和目录还有一些权限参数，重启Apach设置就生效了。我们就可以通过上面的设置 ServerName来访问这个虚拟主机，本例中是 http://192.168.1.85</p>
<p>&nbsp;&nbsp;&nbsp; 从上面的例子我们可以看到，本地可以设置多个虚拟主机，只要这个URL能访问到本志的服务器就行了，因为解析权到Apach后，<strong>它会把不同的URL地址转到不同的目录中去</strong>。<span style="color: rgb(255, 102, 0);">Localhost</span>，<span style="color: rgb(255, 102, 0);">127.0.0.1</span>,<span style="color: rgb(255, 102, 0);">本地局域网的IP</span>都可以设置不同的虚拟主机，其它我们还可以通过修改windows的Hosts文件使用任意域名。<strong><span style="color: rgb(128, 0, 0);"> Hosts</span></strong>文件一般都在<span style="color: rgb(0, 0, 255);">%systemroot%\system(32)\drivers\etc</span>里面，打开文件可以看到：</p>
<pre>
#

# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.

#

# This file contains the mappings of IP addresses to host names. Each

# entry should be kept on an individual line. The IP address should

# be placed in the first column followed by the corresponding host name.

# The IP address and the host name should be separated by at least one

# space.

#

# Additionally, comments (such as these) may be inserted on individual

# lines or following the machine name denoted by a '#' symbol.

#

# For example:

#

#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 102.54.94.97&nbsp;&nbsp;&nbsp;&nbsp; rhino.acme.com&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # source server

#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 38.25.63.10&nbsp;&nbsp;&nbsp;&nbsp; x.acme.com&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # x client host

127.0.0.1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; localhost</pre>
<p>&nbsp;</p>
<p>&nbsp;&nbsp;&nbsp; 在后面加入想要的域名就可以了，如你想通过xxxx.com访问本地的主机只要加入：</p>
<pre>
127.0.0.1&nbsp;&nbsp;&nbsp; xxxx.com</pre>
<p>&nbsp;&nbsp;</p>
<p>&nbsp;&nbsp; Mac os 中也有hosts文件 可以参考:  				<strong><a class="row-title" href="/archives/215.html" title="编辑 &ldquo;修改苹果Mac OS 中的Hosts文件&rdquo;">修改Mac OS 中的Hosts文件</a></strong></p>
<p>&nbsp;&nbsp;</p>
<p>&nbsp;&nbsp;&nbsp; <strong>有很多服务器软件可以直接在图形化界面下设置虚拟主机</strong>，原理是一样的。推荐几个好用的服务软件</p>
<p>&nbsp;&nbsp;&nbsp; windows&nbsp;&nbsp;&nbsp; <a target="_blank" href="http://apmserv.s135.com">AMPServ</a></p>
<p>&nbsp;&nbsp;&nbsp; Mac OS&nbsp;&nbsp;&nbsp;&nbsp; <a target="_blank" href="http://www.mamp.info">MAMP</a><br />
&nbsp;</p>
<div  class="related_post_title">相关文章</div><ul class="related_post"><li><a href="http://www.dengor.com/archives/1328.html" title="一个PHP木马的代码">一个PHP木马的代码</a></li><li><a href="http://www.dengor.com/archives/1301.html" title="lnmp安装后进程优化">lnmp安装后进程优化</a></li><li><a href="http://www.dengor.com/archives/1291.html" title="prestashop在lnmpa下图片不显示问题">prestashop在lnmpa下图片不显示问题</a></li><li><a href="http://www.dengor.com/archives/1162.html" title="使用PHP的header函数修改网页的输出编码">使用PHP的header函数修改网页的输出编码</a></li><li><a href="http://www.dengor.com/archives/1023.html" title="显示Deprecated: Assigning the return value of new by reference is deprecated in解决办法">显示Deprecated: Assigning the return value of new by reference is deprecated in解决办法</a></li><li><a href="http://www.dengor.com/archives/903.html" title="修改PHP运行内存memory大小的几种方法">修改PHP运行内存memory大小的几种方法</a></li><li><a href="http://www.dengor.com/archives/855.html" title="PHP即时输出内容">PHP即时输出内容</a></li><li><a href="http://www.dengor.com/archives/809.html" title="分享一个PHP的google翻译接口GTranslate">分享一个PHP的google翻译接口GTranslate</a></li><li><a href="http://www.dengor.com/archives/798.html" title="PHP处理html简单好工具-simplehtmldom">PHP处理html简单好工具-simplehtmldom</a></li><li><a href="http://www.dengor.com/archives/789.html" title="php运行超时分步执行的简单方法">php运行超时分步执行的简单方法</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.dengor.com/archives/208.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

