如何将错误403重定向到.htaccess中的root

时间:2017-11-02 09:21:26

标签: apache .htaccess redirect

我在Apache中不是很坚定,所以请原谅这个问题是否有点显而易见。 我想通过.htaccess文件将导致特定目录中的错误403的请求重定向到我的Web服务器根目录。 所以https://thedomain.com/secretlair/ - > https://thedomain.com

到目前为止我用过:

boost property ptree

有效,但也会产生重定向问题 https://thedomain.com/secretlair/thefile.txthttps://thedomain.com/thefile.txt

我需要做些什么来改变这项工作?

非常感谢!

1 个答案:

答案 0 :(得分:2)

您可以使用ErrorDocument处理程序来处理403错误,而不是像这样的重写规则:

ErrorDocument 403 https://thedomain.com/

确保在测试此更改之前清除浏览器缓存。