网站中的虚假链接被重定向到主页,但我希望它重定向到404错误页面。我已尝试过所有内容,但重定向发生在主页上。
在htaccess.txt
内,我添加了以下内容:
ErrorDocument 404 /index.php?option=com_content&view=article&id=16 in the root
同样在模板/根文件夹error.php
中,我添加了以下内容:
defined('_JEXEC') or die;
if (($this->error->getCode()) == '404') {
header('Location:/index.php?option=com_content&view=article&id=16');
exit;
}