作者
novlan1
2025.9.9
棋牌赛事上云
棋牌赛事包括斗地主赛事和麻将赛事。
方案
采用方案是 nginx
重定向。
sh
# 新增
location ^~ /newcss/admin/mj-match/
{
rewrite ^/newcss/admin/mj-match/(.*)$ https://h5.igame.qq.com/pmd-mobile.match.hp-match.mj-match/$1 permanent;
}
location ^~ /newcss/admin/ddz-match/
{
rewrite ^/newcss/admin/ddz-match/(.*)$ https://h5.igame.qq.com/pmd-mobile.match.hp-match.ddz-match/$1 permanent;
}
# 之前
location ^~ /newcss/admin/
{
root /usr/local/pmd/htdocs;
add_header Content-Type "text/html; charset=utf-8";
expires 3d;
location ~* \.html$
{
add_header Content-Type "text/html; charset=utf-8";
expires 0d;
add_header Last-Modified $date_gmt;
}
}