/***********************************************************************************************************/
	  ߣ400-999-0518 QQ:617825365
	  ٷַhttp://www.php.cm
	  ٷ̳http://bbs.php.cm
	ٷģվhttp://moban.php188.com
	  ˾ַ·70شD7
	֤ţֵ0218482
	    ǼǺţ2010SR030209
/***********************************************************************************************************/
=========================================================v3.0 RC6=======================================================================
PHP̳ϵͳǹڹ̳ϵͳͬʱҲһҵPHPܣжģ棬ǿĺ̨ܣרҵ̳ϵͳٽϹ̳ǡ̳ǡֻ̳ǡ칫Ʒ̳ǵȡ

°汾3.0rc6
뷽ʽGBK
ڣ2012-8-6

˴

1Ҫ޸ûʹгֵjsδ걨⣬̨ġԼ̨Ŀȫ²𡢸û顣
2չϵͳڲĹܣԱûܹѸҵҪõĹܡ
3ǰ̨Ʋ飬Ḷ́ʹûӱݡ
4ǰ̨ģ幦ܵáչֻۡƣڴҲŻϵͳȶ

޸ Աıͷʾ
޸ ԱŹʾ
޸ رյ϶ʾλ
޸ ޸Ĺ¼ת
޸ ԱĶʾ׼ȷ
޸ Աҳδɵʾ
޸ ԱûͷϢܱ
޸ ǰ̨ҳδֻӵַ
޸ ǰִ̨
޸ ǰ̨Ʒ
޸ ̨ԱĵУϢ
޸ ̨б
޸ ̨ʾ
޸ ̨ƷޱǩӰť
޸ ̨᲻ɾ
޸ ̨ƷӦ
޸ ̨ƷҲ水ť
޸ ̨Ʒӡʱťرղ
޸ ̨Ʒбʾ׼ȷ
޸ ̨ѡͼƬťû취ѡͼƬ
޸ ̨б
޸ ̨ȱȼ򣬲
޸ ̨ʾȷ
޸ ̨ȱǼǷʼJS
޸ ̨Աӡ༭к̨´ڴ
޸ ̨ڵλ
 ͷӷʽԼ
 ̨Ʒͼͼϴʽ
 ̨ͼ
 ̨Ȩ޻֡
 ̨ģ
 ̨Ʒ
 ̨Ʒ
 ̨
 ̨Ʒ
 ̨Ʒ
 ̨·
 ﳵ
 ûԱ
 UCͬǳ
 ̨°
 ̨ݹ
 Ӧ


PHP̳ϵͳݡ¡Աԡ 񡢹桢ϢݿӪƹ㡢֧Ʒ͹޼ࡢȫվȶģɡڵ˲гУٸЧITҵɹĹؼ...

PHP̳ϵͳص:
1õģýôô
2ݵģ庯ɵɵ,޸ĺĴ
3ƵĹ־+ԱΨһ˺ŵ¼
4õûڱḻҵվ
5רҵõûվ׺
6AJAXû,
7ݻѹ
8URL·д·д+SEOŻ,¼ȡ
9ϸ»޼Ȩ޶˺̨
10󶨷վ
11ƷԶר
12ʵֵɫ
13ȫվ̬ץȡ
14Աɰõȼ

˵ھ̬ҳɣģиĶ2.0.5°汾ģвֲʹû߳С⣬ϰ汾ô˰汾
ر˵ APCeAcceleratorXCacheпܵ¼ܺĳ,رնӦģ顣
=========================================================V1.0================================================================
򷢲 

/****************************************************************************************************************************/
	
	·д

/****************************************************************************************************************************/

/******************************************* for apache 2.xϵ ·ӳ·޸*********************************/
RewriteEngine on

#α̬

RewriteCond    %{REQUEST_FILENAME} !-d
RewriteCond    %{REQUEST_FILENAME} !-f
RewriteRule    !\.(js|ico|gif|swf|flv|jpg|png|css|zip|rar|tar|pdf|mp3|wav|rmvb|rm)$ index.php QSA,L 

#ѹ
<FilesMatch "\\.(js|css|html|htm|php|xml|jpg|gif|png|bmp)tiny_mce_markerquot;>
SetOutputFilter DEFLATE
</FilesMatch>

#401-500 
ErrorDocument 401 /errors/internalerror.php
ErrorDocument 402 /errors/internalerror.php
ErrorDocument 403 /errors/internalerror.php
ErrorDocument 404 /errors/internalerror.php
ErrorDocument 500 /errors/internalerror.php

/******************************************* for nginx  ǵ޸ĺ nginx*********************************/

ҵ  location / {
	
     }

  
  	if (!-e $request_filename) {
	 rewrite ^/(.*) /index.php?$1&;
	}
ע˷ʽα̬ģʽ.php ĺ׺ļʱ쳣

:
server {
    listen       89;
    server_name  localhost;
    location / {
        root   /shop/www;
        index  index.html index.htm index.php default.php;
	if (!-e $request_filename) {
	 rewrite ^/(.*) /index.php?$1&;
	}
	if ($fastcgi_script_name ~ \..*\/.*php ) {
		return 403;
	}
    }
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
    location ~ .*\.php?$ {
        root           /shop/www;
        fastcgi_pass   127.0.0.1:9000;
	fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /shop/www$fastcgi_script_name;
        include        fastcgi_params;
    }
}