nyarime 发表于 2024-7-18 20:29:28

WHMCS 8的Nginx伪静态规则


      location / {
            index index.php;
            try_files $uri $uri/ @whmcs;
      }

      location @whmcs {
            rewrite ^/(.*)$ /index.php?_url=/$1 last;
      }
#WHMCS 防扒皮

    location ~* \.(tpl|inc|cfg)$ {
      deny all;
    }

卡尔 发表于 2024-7-18 21:38:27

不错的教程!顶起来!
页: [1]
查看完整版本: WHMCS 8的Nginx伪静态规则