作为程序员一定要保持良好的睡眠,才能好编程

简单配置nginx使之支持pathinfo

发布时间:2016-05-19

location ~ \.php {    #去掉$

     root          H:/PHPServer/WWW;

     fastcgi_pass   127.0.0.1:9000;

     fastcgi_index  index.php;

     fastcgi_split_path_info ^(.+\.php)(.*)$;     #增加这一句

     fastcgi_param PATH_INFO $fastcgi_path_info;    #增加这一句

     fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

     include        fastcgi_params;

}




<?php
    mysql_connec("locallhost","root","");
?>