博客列表 >thinkphp5.0配置nginx重写规则

thinkphp5.0配置nginx重写规则

姑苏城外
姑苏城外原创
2018年07月06日 09:29:032346浏览

server {
  listen 80; #端口号
  server_name demo.aa.com; #域名
  access_log /data/rootlogs/demo.aa.com_nginx.log combined;#日志
  index index.html index.htm index.php;
  root /data/root/default/public/; #路径
 
  include /usr/local/nginx/conf/rewrite/none.conf;
  #error_page 404 /404.html;
  #error_page 502 /502.html;
 
  location ~ [^/]\.php(/|$) {
    #fastcgi_pass remote_php_ip:9000;
    fastcgi_pass unix:/dev/shm/php-cgi.sock;
    fastcgi_index index.php;
    include fastcgi.conf;
  }
  location / {
    if (!-e $request_filename) {
        rewrite ^(.*)$ /index.php?s=/$1 last;
        break;
    }
  }

  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4|ico)$ {
    expires 30d;
    access_log off;
  }
  location ~ .*\.(js|css)?$ {
    expires 7d;
    access_log off;
  }
  location ~ /\.ht {
    deny all;
  }
}

上一条:压缩图片下一条:广告终结者
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议