多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
宝塔安装后,没有 502页面,只有默认的404页面在 `/www/server/panel/data/404.html` 这个页面上 那么我们怎么操作呢 ``` cd /www/server/panel/data/404.html cp 404.html 502.html vim 502.html ``` 502的页面如下(我们伪装成,正在升级的页面) ``` <!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <title>服务器正在升级,请稍等片刻</title> <style> body{ background-color:#444; font-size:14px; } h3{ font-size:60px; color:#eee; text-align:center; padding-top:30px; font-weight:normal; } </style> </head> <body> <h3>您的服务器正在升级,请稍等片刻!</h3> </body> </html> ``` 如果想自定义的话,可以在站点的502错误页面设置项关闭 如图所示,直接将 `#` 去掉即可! ``` error page 502 /502.html ``` ![](https://img.kancloud.cn/46/ef/46ef4bb359d6d50b8c1069aaee5f8a99_864x578.png)