如何将所有子目录重定向到域的根目录?

发布于 2024-12-08 18:56:34 字数 307 浏览 0 评论 0原文

我有一个域名,上面停有多个域名。
我需要做的是将每个流量从子目录重定向到根路径。
例如,我的域名是 example.com 当访问者登陆子目录时,我希望他被重定向到根目录。像这样:

http://example.com/foo ==> http://example.com

并考虑有关停放域名的部分。

http://bar.com/foo == > http://bar.com (parked on example.com)

I have a domain with multiple domains parked on it.
What I need to do is to redirect every traffic from subdirectories to root path.
for example my domain is example.com when the visitor lands on a subdirectory I want him to be redirected to the root. like this:

http://example.com/foo ==> http://example.com

and also consider the part about parked domains.

http://bar.com/foo == > http://bar.com (parked on example.com)

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

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

发布评论

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

评论(2

只是我以为 2024-12-15 18:56:34

此重写规则将所有从子目录的请求重写到上一级(根目录)。

RewriteEngine on

RewriteRule  ^([^/]+)\/(.*)$     $2 [L]

this rewrite rule rewrites all requests from sub-directory to one level-up(root).

RewriteEngine on

RewriteRule  ^([^/]+)\/(.*)$     $2 [L]
浮光之海 2024-12-15 18:56:34

我找到了答案,它是这样完成的:

RewriteRule  ^([^/]+)(.*)$     / [R]

特别感谢死亡

I found the answer and it's done like this:

RewriteRule  ^([^/]+)(.*)$     / [R]

Special thanks to Death.

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