求助,不知道咋回事 插件的启用和禁用都提示 无法启用/禁用插件。
看了眼F12 发现是500 Internal Server Error,但是返回插件管理页面后刷新下网页又启用/禁用了
https://www.abc.com/action/plugins-edit?activate=ClearCloudflareCache&_=fce2c80eba81348bf9a9245112b33116
最近也没动啥地方,就昨天弄了下CF SAAS,网站管理面板删了回退源域名,保留了www和跟域名。DNS解析境内 visa.cn 境外1.0.0.5,还添加了个301重定向规则,根域名重定向到www,也就没了。

瞎晃悠的时候看到个typecho专属cf缓存配置规则,我就顺手抄了份,三个规则。

不进行缓存(starts_with(http.request.full_uri, “https://www.abc.com/admin/”)) or (starts_with(http.request.full_uri, “https://www.abc.com/search/”)) or (starts_with(http.request.full_uri, “https://www.abc.com/action/”))
action是我刚才添加的,发现没用。
登陆和评论不缓存(starts_with(http.request.full_uri, “https://www.abc.com/”) and http.cookie contains “typecho_authCode” and http.cookie contains “typecho_uid”) or (starts_with(http.request.full_uri, “https://www.abc.com/”) and http.cookie contains “__typecho_remember_”)
缓存所有(starts_with(http.request.full_uri, “https://www.abc.com/”) and not http.cookie contains “typecho_authCode” and not http.cookie contains “typecho_uid” and not http.cookie contains “__typecho_remember_”) or (starts_with(http.request.full_uri, “https://www.abc.com/usr/uploads”))



我开了下开发者模式 然后去开关TYPECHO插件还是一样,不知道是规则问题还是哪的问题,我用的几个插件一直都正常,也不存在插件文件夹名字不对导致的500错误,网上没搜到有关CF和TYPECHO插件之间冲突的问题。
有没有懂的大佬给看看