WHMCS的Nginx伪静态规则

location ~ /announcements/?(.*)$ {
        rewrite ^/(.*)$ /index.php?rp=/announcements/$1;
    }
location ~ /download/?(.*)$ {
rewrite ^/(.*)$ /index.php?rp=/download$1;
}

location ~ /knowledgebase/?(.*)$ {
rewrite ^/(.*)$ /index.php?rp=/knowledgebase/$1;
}

location ~ /store/ssl-certificates/?(.*)$ {
rewrite ^/(.*)$ /index.php?rp=/store/ssl-certificates/$1;
}

location ~ /store/sitelock/?(.*)$ {
rewrite ^/(.*)$ /index.php?rp=/store/sitelock/$1;
}

location ~ /store/website-builder/?(.*)$ {
rewrite ^/(.*)$ /index.php?rp=/store/website-builder/$1;
}

location ~ /store/order/?(.*)$ {
rewrite ^/(.*)$ /index.php?rp=/store/order/$1;
}

location ~ /cart/domain/renew/?(.*)$ {
rewrite ^/(.*)$ /index.php?rp=/cart/domain/renew$1;
}

location ~ /account/paymentmethods/?(.*)$ {
rewrite ^/(.*)$ /index.php?rp=/account/paymentmethods$1;
}

location ~ /password/reset/?(.*)$ {
rewrite ^/(.*)$ /index.php?rp=/password/reset/$1;
}

location ~ /account/security/?(.*)$ {
rewrite ^/(.*)$ /index.php?rp=/account/security$1;
}

location ~ /subscription?(.*)$ {
rewrite ^/(.*)$ /index.php?rp=/subscription$1;
}

#社交媒体授权

location ~ /auth/provider/google_signin/finalize/?(.*)$ {
rewrite ^/(.*)$ /index.php?rp=auth/provider/google_signin/finalize$1;
}

#WHMCS 后台

location ~ /admin/(addons|apps|search|domains|help\/license|services|setup|utilities\/system\/php-compat)(.*) {
rewrite ^/(.*)$ /admin/index.php?rp=/admin/$1$2 last;
}

location ~ /admin/client/?(.*)/paymethods/?(.*)$ {
rewrite ^/(.*)$ /admin/index.php?rp=/client/?(.*)/paymethods/$1;
}

location ~ /admin/setup/auth/?(.*)$ {
rewrite ^/(.*)$ /admin/index.php?rp=/setup/auth/$1;
}

location ~ /admin/client/?(.*)/tickets/?(.*)$ {
rewrite ^/(.*)$ /admin/index.php?rp=/client/?(.*)/tickets/$1;
}

location ~ /admin/client/?(.*)/invoice/?(.*)/capture/?(.*)$ {
rewrite ^/(.*)$ /admin/index.php?rp=/client/?(.*)/invoice/?(.*)/capture/$1;
}

location ~ /admin/account/security/two-factor/?(.*)$ {
rewrite ^/(.*)$ /admin/index.php?rp=/admin/account/security/two-factor/$1;
}

location ~ /admin/search/intellisearch?(.*)$ {
rewrite ^/(.*)$ /admin/index.php?rp=/search/intellisearch/$1;
}

#WHMCS 防扒皮

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

# Security Advisory 2020-01-28
location ^~ /vendor/ {
deny all;
return 403;
}

 

© 版权声明
THE END
請多多支持
点赞0
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情图片

    暂无评论内容