嘟嘟社区

[疑问] 兰空图床能塞到二级目录下吗?


试了几个伪静态 好像都不行
  1. #这种报500错误,跨域取消了
  2. location ^~ /sub/ {
  3.     root /home/wwwroot/domain/sub/public;
  4.     if (!-e $request_filename) {
  5.         rewrite ^(.*)$ /sub/index.php?s=/$1 last;break;
  6.         break;
  7.     }
  8. }
  9. #这种直接404
  10. location ^~ /sub/ {
  11.     root /home/wwwroot/domain/sub/public;
  12.     if (!-e $request_filename) {
  13.         rewrite ^/sub/(.*)$ /sub/index.php?s=/$1 last;break;
  14.         break;
  15.     }
  16. }

复制代码

  1. server
  2.     {
  3.         listen 1234;
  4.         #listen [::]:80;
  5.         server_name 127.0.0.1:1234 ;
  6.         index index.html index.htm index.php default.html default.htm default.php;
  7.         root  /home/wwwroot/127.0.0.1;
  8.         location ^~ /sub/ {
  9.                     root /home/wwwroot/127.0.0.1/sub/public;
  10.                     if (!-e $request_filename) {
  11.                  rewrite ^/sub/(.*)$ /sub/index.php?s=/$1 last;
  12.                  break;
  13.                     }
  14.         }
  15.         
  16.         location ~ [^/].php(/|$) {
  17.                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  18.                 fastcgi_index index.php;
  19.                 #include fastcgi.conf;
  20.                 fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
  21.                 fastcgi_param  QUERY_STRING       $query_string;
  22.                 fastcgi_param  REQUEST_METHOD     $request_method;
  23.                 fastcgi_param  CONTENT_TYPE       $content_type;
  24.                 fastcgi_param  CONTENT_LENGTH     $content_length;
  25.                 fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
  26.                 fastcgi_param  REQUEST_URI        $request_uri;
  27.                 fastcgi_param  DOCUMENT_URI       $document_uri;
  28.                 fastcgi_param  DOCUMENT_ROOT      $document_root;
  29.                 fastcgi_param  SERVER_PROTOCOL    $server_protocol;
  30.                 fastcgi_param  REQUEST_SCHEME     $scheme;
  31.                 fastcgi_param  HTTPS              $https if_not_empty;
  32.                 fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
  33.                 fastcgi_param  SERVER_SOFTWARE    nginx/$nginx_version;
  34.                 fastcgi_param  REMOTE_ADDR        $remote_addr;
  35.                 fastcgi_param  REMOTE_PORT        $remote_port;
  36.                 fastcgi_param  SERVER_ADDR        $server_addr;
  37.                 fastcgi_param  SERVER_PORT        $server_port;
  38.                 fastcgi_param  SERVER_NAME        $server_name;
  39.                 # PHP only, required if PHP was built with –enable-force-cgi-redirect
  40.                 fastcgi_param  REDIRECT_STATUS    200;
  41.                 #fastcgi_param PHP_ADMIN_VALUE "open_basedir=/home/wwwroot/127.0.0.1/sub/:/tmp/:/proc/";
  42.                 #include pathinfo.conf;
  43.                 fastcgi_split_path_info ^(.+?.php)(/.*)$;
  44.                 set $path_info $fastcgi_path_info;
  45.                 fastcgi_param PATH_INFO       $path_info;
  46.                 try_files $fastcgi_script_name =404;
  47.             }
  48.     }

复制代码

别光顾着T楼了,快来救救我

现在用着chevereto,得php7,wp用的php8,挂了监控图床那边每天给你来几封邮件

现在已经习惯要是不来邮件,十之8、9是监控坏了

蹲一个大佬