gpt4 book ai didi

.htaccess - htaccess 重定向到子目录

转载 作者:行者123 更新时间:2023-12-04 06:19:39 26 4
gpt4 key购买 nike

我正在尝试使用 .htaccess 将 301 重定向到子目录,即

Redirect 301 /parent http://example.com/parent/child/

不幸的是,这会导致重定向循环,即
/parent/child/child/child/child/etc.

请有人能指出我正确的方向吗?

最佳答案

Redirect指令将匹配并重定向以 /parent 开头的所有内容.您需要使用 RedirectMatch仅重定向此特定文件夹:

RedirectMatch 301 ^/parent/?$ http://example.com/parent/child/

相同,但使用 mod_rewrite :
RewriteRule ^parent/?$ http://example.com/parent/child/ [R=301,L]

备注:
将其放在网站根文件夹中的 .htaccess 中。如果放在其他地方,可能需要进行一些小的调整。

关于.htaccess - htaccess 重定向到子目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6751715/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com