万达换票券 发表于 2018-11-10 14:36:34

nginx忽略文件名大小写

# cat img.qq.com.conf  perl_set $url '
  sub {
  my $r = shift;
  return $1.lc($2) if ($r->uri =~ m/^(.+\/)([^\/]+)$/);
  }
  ';
  server
  {
  listen       80;
  server_nameimg.qq.com;
  #index index.html index.htm;
  root /data1/website/img;
  if ($uri ~ ){
  rewrite ^(.*)$ $url last;
  }
  location ~ ^/bbs/.*\.(php|php5)$
  {
  deny all;
  }

页: [1]
查看完整版本: nginx忽略文件名大小写