zkmhy2023 目前用halo2.0 用百度地图api写了个足迹地图页面,发现没有静态存储。 试着用附件上传后,页面加载正常。然而发现页面有bug,更新页面文件,加载的仍是老页面,最后删除该页面,仍然加载老页面(按理该404) 已清理浏览器缓存并重启电脑及重启docker多次
Snuffel233 如果是在主题开发过程中,试试以“自定义页面”的方式导入页面 参考文档:https://docs.halo.run/developer-guide/theme/template-route-mapping#custom-templates 然后新建页面在主设置中选择模板即可
zkmhy2023 Snuffel233 感谢回复,我会考虑二次开发主题来试试 反向代理用的是宝塔的nginx,代码如下: location / { proxy_pass http://127.17.0.2:8090/; # 注意改成你实际使用的端口 rewrite ^/(.*)$ /$1 break; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Upgrade-Insecure-Requests 1; proxy_set_header X-Forwarded-Proto https; }