为什么我会遇到重定向循环?

发布于 2024-08-11 19:43:53 字数 397 浏览 7 评论 0原文

我有一个网站,例如(http://example.com)。我希望对 / ie http://example.com 的任何请求都重定向到 http://example.com/stuff。我添加了一个 .htaccess 文件,其中包含以下行:

redirect 301 / http://example.com/stuff

有什么建议吗?

I have a website with a for example (http://example.com). I want any requests for / i.e. http://example.com to be redirected to http://example.com/stuff. I added a .htaccess file with the following line:

redirect 301 / http://example.com/stuff

Any suggestion?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

著墨染雨君画夕 2024-08-18 19:43:53

请参阅重定向指令的文档

然后任何以
URL-Path 将返回重定向
向该地点的客户提出请求
的目标 URL。附加路径
超出匹配范围的信息
URL 路径将附加到
目标网址。

使用 RedirectMatch 代替:

RedirectMatch 301 ^/$ http://example.com/stuff

See the Redirect directive's documentation:

Then any request beginning with
URL-Path will return a redirect
request to the client at the location
of the target URL. Additional path
information beyond the matched
URL-Path will be appended to the
target URL.

Use a RedirectMatch instead:

RedirectMatch 301 ^/$ http://example.com/stuff
温柔一刀 2024-08-18 19:43:53

重定向会定向以给定模式开头的任何内容。

使用:

RedirectMatch 301 ^/$ http://example.com/stuff

这需要一个正则表达式,因此您可以使其更具体。

Redirect directs anything that starts with the pattern given.

Use:

RedirectMatch 301 ^/$ http://example.com/stuff

This takes a regular expression, so you can make it more specific.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文