解决方法
找到文件:source\module\forum\forum_viewthread.php
(如果是文章的话则是:source\module\portal\portal_view.php,以此类推)中的:
showmessage(‘thread_nonexistence’);
替换为:
header('HTTP/1.1 404 Not Found'); header('status: 404 Not Found'); include("404/index.html"); exit();
其中“404/index.html”为自己设置的404页面的路径。
发表回复