搜索
缓存时间02 现在时间02 缓存数据 起风了 唯有努力生存
查看: 814|回复: 2

[使用技巧] WHMCS的Nginx伪静态规则

[复制链接]
发表于 2024-7-18 20:29:28 | 显示全部楼层 |阅读模式

厌倦了滚动浏览相同的帖子?当您创建帐户后,您将始终回到您离开的地方。使用帐户,不仅可以享受无广告的清爽界面!

您需要 登录 才可以下载或查看,没有账号?注册

×
该教程适用于whmcs 8.10.1
[pre]location ~ /clients/admin/(client!\.php|client/(.*)|table/(.*)|search!\.php|search/(.*)|apps|billing|setup|user|services|addons|domains|utilitiesemailmarketer!\.php|utilities/(.*)|logs|help!\.php|help/license|modules|image/(recent|upload)|validation_com/(.*))/?(.*)$ {
                rewrite ^/(.*)$ /clients/admin/index.php?rp=/admin/$1/$2;
        }

        location ~ /clients/(images/em|invoice|login|password|account|store|download|knowledgebase|announcements|clientarea/ssl-certificates|user/(verification|accounts|profile|password|security|verify)|cart/(domain/renew)|domain/pricing|cart/order|images/kb)/?(.*)$ {
                rewrite ^/(.*)$ /clients/index.php?rp=/$1/$2;
        }

        location / {
                try_files $uri $uri/ /index.php?$query_string;
        }
#WHMCS 防扒皮

    location ~* \.(tpl|inc|cfg)$ {
        deny all;
    }[/pre]
爱生活,爱奶昔~
发表于 2024-7-18 21:38:27 | 显示全部楼层
不错的教程!顶起来!
爱生活,爱奶昔~
回复 支持 反对

使用道具 举报

楼主| 发表于 2024-7-19 00:51:58 来自手机 | 显示全部楼层
群友提供了个通用版,比我写的好多了
        location / {
            index index.php;
            try_files $uri $uri/ @whmcs;
        }

        location @whmcs {
            rewrite ^/(.*)$ /index.php?_url=/$1 last;
        }
爱生活,爱奶昔~
回复 支持 反对

使用道具 举报

Powered by Nyarime. Licensed

GMT+8, 2024-11-24 02:59 , Processed in 0.024006 second(s), 11 queries , Gzip On, Redis On
发帖际遇 ·手机版 ·小黑屋 ·RSS ·奶昔网

登录切换风格
快速回复 返回顶部 返回列表