1.find / -name nginx.conf找到nginx配置文件

2.

#
# The default server
#
server {
listen 80;

#填写自己的域名
server_name www.bestcfm.com;

#charset koi8-r;

#access_log logs/host.access.log main;

# Load configuration files for the default server block.

location / {
root /var/www/html/public;
index index.html index.php index.htm;
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1 last;
}
}

error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}

# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php($|/) {#去掉这里的$
root /var/www/html/public;
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;
}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}

3.重启nginx,find / -name nginx找到sbin目录执行./nginx -s reload

最新文章

  1. flask_关注者,联系人和好友
  2. 使用SharedPreferences进行简单的储存
  3. jQuery的选择器小总结
  4. Python中的正则表达式regular expression
  5. 【转】BitmapFactory.Options
  6. 20个linux命令行工具监视性能(上)
  7. 通同select便签实现简单的二级联动
  8. Swift开放StatsD后上传数据的出现,出现退换货503的Bug
  9. Codeforces Round #277 (Div. 2) 解题报告
  10. JAVA-判断请求来自PC端还是手机端
  11. Swift - 点击输入框外部屏幕关闭虚拟键盘
  12. MVC快速分页
  13. Tomcat服务器如何读取本地磁盘数据?
  14. Python3的桌面程序开发利器:Eric6的环境搭建、使用
  15. http_proxy_module模块常用参数
  16. jquery基本语法(一)
  17. WebService 及 CXF 的进阶讲解
  18. 转载:如何搭建turn server 在centos7上。
  19. 淘宝卖家搜索器V1.6算法注册机。
  20. vertical解锁table

热门文章

  1. nagios服务端安装
  2. 51NOD 1554 欧姆诺姆和项链 巧妙利用KMP
  3. 使用fastJSON解析HashMap中的数据
  4. HTTP基础--cookie机制和session机制
  5. ajax数据读取和绑定
  6. linux总结shell
  7. xmlhelper类
  8. 灰姑娘的水晶鞋(NOIP模拟赛Round 7)
  9. sqlalchemy多表查询
  10. nginx+lua_module安装