ePower企服引擎

标题: epower程序linux下nginx配置参考 [打印本页]

作者: 皓月    时间: 2017-8-16 15:35
标题: epower程序linux下nginx配置参考
  1. server{
  2.     listen             80;                    #监听的端口号
  3.     server_name     www.epower.cn;          #域名
  4.     location / {
  5.         root /web/epower;            #站点的路径
  6.         index index.php index.html index.htm;
  7.         if (!-e $request_filename) {
  8.             rewrite ^(.*)$ /index.php$1 last;
  9.         }
  10.     }
  11.     location ~ ^.+\.php {
  12.         root /web/epower;            #站点的路径
  13.         fastcgi_pass 127.0.0.1:9000;          #根据自己的 php-fpm 配置填写
  14.         fastcgi_index index.php;
  15.         ###配置支持pathinfo
  16.         fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
  17.           fastcgi_param PATH_INFO $fastcgi_path_info;
  18.           fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
  19.         fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  20.         include fastcgi_params;
  21.     }
  22. }
复制代码


       由于epower程序采用thinkphp 进行开放,在采用nginx的web价格在设置好伪静态后,同时也要开启pahtinfo


作者: 9527    时间: 2018-1-10 23:02
amh的 咋配置 找了很多教程 都是404




欢迎光临 ePower企服引擎 (http://bbs.epower.cn/) Powered by Discuz! X3.3