Mac nginx配置对php项目的支持

基础版本

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
    fastcgi_pass     127.0.0.1:9000;
    fastcgi_index    index.php;
    include          fastcgi_params;
    fastcgi_param    SCRIPT_FILENAME  $document_root$fastcgi_script_name;
}

这个时候,基本的php文件可以执行。

但是如果使用php项目,会有问题。因为有些路径不是以php结尾的。

升级版本

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php { 
    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;
}

这样就支持tp等框架了。

上一篇:Android安卓SharedPreferences使用 增删改查


下一篇:Python官方文档学习心得(第二篇)