问题来源:https://ask.fastadmin.net/question/10712.html

全新极验验证码插件安装后,登录界面一直显示正在加载验证码...

解决办法:

你应该是开启了多入口,即后台一个单独的入口文件。所以伪静态要这样配置(nginx):

location / {
  if (!-e $request_filename) {
    rewrite ^(.*)$ /index.php?s=/$1 last;
    break;
  }
  if (!-e $request_filename) {
    rewrite ^(.*)$ /admin.php?s=/$1 last;
    break;
  }
}

 

相关文章:

  • 2021-08-17
  • 2021-09-18
  • 2021-05-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-06
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-13
  • 2022-12-23
  • 2021-07-19
  • 2022-01-23
  • 2022-12-23
相关资源
相似解决方案