xuexb/learn-nginx

我这个需求nginx要怎么配置

Easy10010 opened this issue · 2 comments

目录下有两个文件
/www/sample1 // 没有后缀的PHP文件
/www/sample2.php // 有后缀的PHP文件

想要实现访问下面的链接,PHP能正常解析执行
http://localhost/sample1 // 解析执行/www/sample1
http://localhost/sample2 // 解析执行/www/sample2
http://localhost/sample2.php // 解析执行/www/sample2

同时浏览器访问 http://localhost 可以正常目录浏览

我折腾了几个小时nginx配置,前面两个sample1, sample2的需求可以了。
但是访问http://localhost ,nginx报404错误,没法目录浏览

当前配置:

user www-data;
worker_processes auto;
pid /run/nginx.pid;

events {
  worker_connections 768;
  # multi_accept on;
}

http {

  sendfile on;
  tcp_nopush on;
  tcp_nodelay on;
  keepalive_timeout 65;
  types_hash_max_size 2048;

  include /etc/nginx/mime.types;
  default_type application/octet-stream;

  # 开启目录浏览
  autoindex on;

  server {
    listen 80;

    server_name t;
    set $base /www;
    root $base;

    index index.html index.php;

    location / {
      try_files $uri $uri.html $uri/ $uri.php?$args /index.php?$query_string @extensionless-php;
    }

    location ~ (|\.php)$ {
      try_files $uri $uri.php =404;

      # fastcgi settings
      include fastcgi_params;
      fastcgi_pass      127.0.0.1:9000;
      fastcgi_index     index.php;
      fastcgi_buffers     8 16k;
      fastcgi_buffer_size   32k;
      fastcgi_param DOCUMENT_ROOT   $realpath_root;
      fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
      fastcgi_param PHP_ADMIN_VALUE "open_basedir=/www/:/usr/lib/php/:/tmp/";
    }

    location @extensionless-php {
        rewrite ^(.*)$ $1.php last;
    }

  }

}
xuexb commented

因为你使用了 try_files ,她会一层层去尝试匹配,我感觉你的需求可以枚举式的去写 location 匹配你的目标,如:

# 根据你的需求可以匹配首页,或者其他页面等
location / {
    autoindex on;
    autoindex_exact_size off;
    autoindex_localtime on;
}

# 只有枚举在这里面的才走你的 PHP 重写规则
location ~* ^/(sample1|sample2|sample3) {
    try_files ...;
}

我把

location ~ (|\.php)$ 

改成

location ~# ^\/[^\.]+(|\.php)$

目录浏览也可以了,但是到了第二级目录里又不行了。。。