nginx发布h5后空白
发布网友
发布时间:2022-04-23 14:03
我来回答
共1个回答
热心网友
时间:2023-10-17 06:32
可能是因为前端vue项目迁移至K8S容器中。现象:前端系统页面空白,只有标题栏。nginx容器默认配置:location/{;root/usr/share/nginx/html;try_files$uri/index、html。
解决方法:在容器中修改nginx配置location/{;root/usr/share/nginx/html;return200;#新增location/test{;alias/usr/share/nginx/html;try_files$uri/test/index、html。
热心网友
时间:2023-10-17 06:32
可能是因为前端vue项目迁移至K8S容器中。现象:前端系统页面空白,只有标题栏。nginx容器默认配置:location/{;root/usr/share/nginx/html;try_files$uri/index、html。
解决方法:在容器中修改nginx配置location/{;root/usr/share/nginx/html;return200;#新增location/test{;alias/usr/share/nginx/html;try_files$uri/test/index、html。