如何在底部增加备案号
请
登录后发表观点
新版参考这里:
#新版备案
- 不显示可添加
proxy_set_header Accept-Encoding ""; - 上移动到 CN 下固定,范围 640~660
position: absolute;top: 640px;
注意:开启企业微信扫码的话,上移动到 CN 下固定,为 740
仅显示 ICP 备案
location ~ (/$|/network) {
proxy_set_header Accept-Encoding "";
sub_filter '</body>' '<p style="position: absolute;top: 640px;padding:20px 0;text-align:center;position:absolute;bottom:20px;width:100%;"><a target="_blank" href="https://beian.miit.gov.cn">沪ICP备20220823号-1</a></p></body>';
proxy_pass http://mdy;
proxy_set_header Host $host;
}
仅显示公安备案信息
location ~ (/$|/network) {
proxy_set_header Accept-Encoding "";
sub_filter '</body>' '<p style="position: absolute;top: 640px;padding:20px 0;text-align:center;position:absolute;bottom:20px;width:100%;"><a target="_blank" href="https://www.beian.gov.cn/portal/registerSystemInfo/">沪公网安备 31010502011103号</a></p></body>';
proxy_pass http://mdy;
proxy_set_header Host $host;
}
显示 ICP 备案与公安备案信息
location ~ (/$|/network) {
proxy_set_header Accept-Encoding "";
sub_filter '</body>' '<p style="position: absolute;top: 640px;padding:20px 0;text-align:center;position:absolute;bottom:20px;width:100%;"><a target="_blank" href="https://beian.miit.gov.cn">沪ICP备20220823号-1</a><br><a target="_blank" href="https://www.beian.gov.cn/portal/registerSystemInfo/">沪公网安备 31010502011103号</a></p></body>';
proxy_pass http://mdy;
proxy_set_header Host $host;
}