<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[静怡家园]]></title> 
<link>http://www.zhanghaijun.com/index.php</link> 
<description><![CDATA[书山有路勤为径，学海无涯苦作舟！]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[静怡家园]]></copyright>
<item>
<link>http://www.zhanghaijun.com/post//</link>
<title><![CDATA[CodeIgniter在nginx服务器下面的rewrite规则]]></title> 
<author>碟舞飞扬 &lt;webmaster@zhanghaijun.com&gt;</author>
<category><![CDATA[博客首页]]></category>
<pubDate>Mon, 20 Feb 2012 03:03:21 +0000</pubDate> 
<guid>http://www.zhanghaijun.com/post//</guid> 
<description>
<![CDATA[ 
	与apache的规则不同,CodeIgniter在nginx服务器的伪静态(rewrite)规则如下:<br/><br/>user&nbsp;&nbsp;www www;<br/>worker_processes 8;<br/>error_log&nbsp;&nbsp;/var/log/nginx_error.log&nbsp;&nbsp;crit;<br/>pid&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;/usr/local/nginx/nginx.pid;<br/>worker_rlimit_nofile 65535;<br/>events<br/>&#123;<br/>use epoll;<br/>worker_connections 65535;<br/>&#125;<br/><br/>http &#123;<br/>include mime.types;<br/>default_type&nbsp;&nbsp;application/octet-stream;<br/>server_names_hash_bucket_size 128;<br/>client_header_buffer_size 32k;<br/>large_client_header_buffers 4 32k;<br/>client_max_body_size 8m;<br/>sendfile on;<br/>tcp_nopush&nbsp;&nbsp;&nbsp;&nbsp; on;<br/>keepalive_timeout 60;<br/>tcp_nodelay on;<br/>fastcgi_connect_timeout 300;<br/>fastcgi_send_timeout 300;<br/>fastcgi_read_timeout 300;<br/>fastcgi_buffer_size 64k;<br/>fastcgi_buffers 4 64k;<br/>fastcgi_busy_buffers_size 128k;<br/>fastcgi_temp_file_write_size 128k;<br/>gzip on;<br/>gzip_min_length&nbsp;&nbsp;1k;<br/>gzip_buffers&nbsp;&nbsp;&nbsp;&nbsp; 4 16k;<br/>gzip_http_version 1.0;<br/>gzip_comp_level 2;<br/>gzip_types&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; text/plain application/x-javascript text/css application/xml;<br/>gzip_vary on;<br/>log_format&nbsp;&nbsp;main&nbsp;&nbsp;‘$remote_addr – $remote_user [$time_local] “$request” ‘<br/>‘$status $body_bytes_sent “$http_referer” ‘<br/>‘”$http_user_agent” “$http_x_forwarded_for”‘;<br/>server<br/>&#123;<br/>listen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 80;<br/>server_name&nbsp;&nbsp;192.168.10.60;<br/>root /PATH/TO/YOUR/CI/FORLDER;<br/>index&nbsp;&nbsp;index.html index.htm index.php index.shtml;<br/><span style="color: #FF0000;">if ($request_filename !~* /(javascript&#124;css&#124;images&#124;fckeditor&#124;userfiles&#124;crontab&#124;robots&#92;.txt&#124;index&#92;.php)) <br/>&#123;<br/>rewrite ^/(.*)$ /index.php?$1 last;<br/>&#125;</span><br/>access_log&nbsp;&nbsp;/var/log/192.168.10.60-access.log;<br/><br/>location ~ .*&#92;.(gif&#124;jpg&#124;jpeg&#124;png&#124;bmp&#124;swf)$<br/>&#123;<br/>expires&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;30d;<br/>&#125;<br/><br/>location ~ .*&#92;.(js&#124;css)?$<br/>&#123;<br/>expires&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1h;<br/>&#125;<br/>location ~ &#92;.php$ &#123;<br/>fastcgi_pass&nbsp;&nbsp; 127.0.0.1:9000;<br/>fastcgi_index&nbsp;&nbsp;index.php;<br/>include&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fastcgi_params;<br/>&#125;<br/><br/>location ~ /&#92;.ht<br/>&#123;<br/>deny&nbsp;&nbsp;all;<br/>&#125;<br/>&#125;<br/>&#125;<br/>Tags - <a href="http://www.zhanghaijun.com/tags/codeigniter/" rel="tag">codeigniter</a> , <a href="http://www.zhanghaijun.com/tags/nginx/" rel="tag">nginx</a>
]]>
</description>
</item><item>
<link>http://www.zhanghaijun.com/post//#blogcomment</link>
<title><![CDATA[[评论] CodeIgniter在nginx服务器下面的rewrite规则]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://www.zhanghaijun.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>