问题原因不明,页面确实可以访问,但是,缺少CSS,应该是路径问题
所以我用宝塔重定向直接转回了帖子页面,目前看来访问正常
宝塔配置
#REWRITE-START
# 处理具有额外路径段的情况,需放在更通用规则之前
rewrite ^/index.php/(conversations|conversation)/(.*)/thread-(.*) /thread-$3 permanent;
# 合并 conversations 和 conversation 的规则
rewrite ^/index.php/(conversations|conversation)/thread-(.*) /thread-$2 permanent;
# 处理直接从 index.php 开始的 thread- 链接
rewrite ^/index.php/thread-(.*) /thread-$1 permanent;
# 处理来自 wap 子目录下的 thread- 链接
rewrite ^/index.php/wap/thread-(.*) /thread-$1 permanent;
#REWRITE-END
最后于 18天前
被juse编辑
,原因: