tp5 nginx 静态目录下文件夹名称为php时出现403 Forbidden

新手上路,请多包涵

如题,静态目录下文件夹名称为php下的 .php 文件访问出现403 Forbidden,但是其他文件格式如html、js等文件范文正常,文件夹名称不为php的所有文件访问都正常(包括php文件)

nging配置文件如下

server {
  listen 80;
  server_name xxx.xxx.com;
  #access_log /data/wwwlogs/xxx.xxxx.log combined;
  #error_log /data/wwwlogs/xxx.xxxxx_error.log;

  set $root /data/www/tp5/public;

  location ~ \.php {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_split_path_info ^((?U).+.php)(/?.+)$;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
        fastcgi_param    SCRIPT_FILENAME    $root$fastcgi_script_name;
        include        fastcgi_params;
    }
    location ~ .*\.(gif|jpg|jpeg|bmp|png|ico|txt|js|css)$
    {
        root $root;
    }
    location / {
        root    $root;
        index    index.html index.php;
        if ( -f $request_filename) {
            break;
        }
        if ( !-e $request_filename) {
            rewrite ^(.*)$ /index.php/$1 last;
            break;
        }
    }


}

文件目录结构

clipboard.png

clipboard.png

clipboard.png

阅读 4.8k
1 个回答

应该是目录权限的问题。 把 public 目录的 读写权限打开 改成 777

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题