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

编程入门 行业动态 更新时间:2024-10-21 03:28:19
本文介绍了如何在 .htaccess 中将错误 403 重定向到 root的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我对 Apache 不是很了解,所以如果问题看起来有点明显,请原谅.我想通过 .htaccess 文件将在特定目录中导致错误 403 的请求重定向到我的网络服务器根目录.所以 https://thedomain/secretlair/ -> https://thedomain

I am not very firm in Apache, so please excuse if the question might seem a bit obvious. I would like to redirect requests that would result in an Error 403 in specific directories to my webservers root by means of a .htaccess file. so https://thedomain/secretlair/ -> https://thedomain

到目前为止我使用过:

RewriteEngine on
RewriteBase /
RewriteRule (.*) https://thedomain/$1 [R=301,L]

这有效但也产生了重定向的问题https://thedomain/secretlair/thefile.txt 到 https://thedomain/thefile.txt

which works but creates the problem of also redirecting https://thedomain/secretlair/thefile.txt to https://thedomain/thefile.txt

我需要改变什么才能使这项工作有效?

what do I need to change to make this work?

非常感谢!

推荐答案

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

You can just use a ErrorDocument handler for 403 error instead of a rewrite rule like this:

ErrorDocument 403 https://thedomain/

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

Make sure to clear your browser cache before testing this change.

这篇关于如何在 .htaccess 中将错误 403 重定向到 root的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

更多推荐

[db:关键词]

本文发布于:2023-04-20 00:22:37,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/972722.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:中将   重定向   错误   如何在   root

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!