嘟嘟社区

nginx开了伪静态 怎么排除robots.txt不受伪静态影响


  1. rewrite ^/(?!.well-known)(.*)$ /index.php?/$1 last;

复制代码

写了伪静态规则  无法访问robots.txt文件  请问怎么排除

location = /robots.txt {
      allow all;
      log_not_found off;
      access_log off;
      break;
  }
放前面不行吗

royzheng 发表于 2022-1-13 16:48
location = /robots.txt {
      allow all;
      log_not_found off;

不行啊