nginx基本配置

开启php-fpm服务
进入php安装目录下的sbin目录
    nohup ./php-fpm > a.log &   

修改nginx.conf文件,
location / {
root 绑定网站入口
index index.html index.htm index.php
if(!-e \(request_filename){ rewrite ^/index.php(.*)\) /index.php?s=\(1 last; rewrite ^(.*)\) /index.php?s=$1 last;
break;
}
}
修改完成后是要命令
nginx -s reload

上一篇:各种功能,含moker数据响应


下一篇:Nginx Rewrite功能的使用和命令集合