探索,發現,愛好、學習,記錄,分享。
學海無涯,天涯若比鄰,三人行,必有我師。

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;
}

 

版權聲明:本文采用知識共享 署名4.0國際許可協議 [BY-NC-SA] 進行授權
轉載事宜:如需轉載需徵得應允,轉載必須注明來源於本站的信息。
文章名称:《WHMCS的Nginx伪静态规则》
文章链接:https://www.thefreesky.com/blog/28272.html
本站資源僅供個人學習交流,請於下載後24小時內刪除,不允許用於商業用途,否則法律問題自行承擔。

評論 抢沙发