淑昊柠 发表于 2017-12-22 14:16:54

【Thinkphp5 】部署nginx时nginx.conf配置文件修改

server  {
  listen
80;#listen [::]:80;  server_name www.xxx.cn xxx.cn;
  index index.html index.htm index.php default.html default.htm default.php;
  root/home/wwwroot/www.xxx.cn/public;
  

  include other.conf;
  #error_page   404   /404.html;
  include enable-php.conf;
  

  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  {
  expires      30d;
  }
  

  location ~ .*\.(js|css)?$
  {
  expires      12h;
  }
  

  location / {
  if (!-e $request_filename) {
  rewrite ^(.*)$ /index.php?s=$1 last;
  break;
  }
  }
  location ~ /\.
  {
  deny all;
  }
  

  access_log/home/wwwlogs/www.xxx.cn.;
  }
页: [1]
查看完整版本: 【Thinkphp5 】部署nginx时nginx.conf配置文件修改