找到文件:sourcemoduleforumforum_viewthread.php中的:
复制代码 代码示例:
showmessage('thread_nonexistence');
替换为:
复制代码 代码示例:
header('HTTP/1.1 404 Not Found');
header('status: 404 Not Found');
exit();
然后自己再去设置404页面。
也可以直接跳转到跟目录的 404.html,把代码替换为:
复制代码 代码示例:
dheader("Location: 404.html");
就是如此简单,大家亲自测试下吧,希望可以解决大家的问题。