URL/Apache 重定向问题。 (域+目录重定向到sudomain)

发布于 2024-08-11 21:17:57 字数 172 浏览 4 评论 0原文

我已经尝试解决这个问题大约两个小时了。出现了一个新的要求,要求我尝试找到一种方法将请求从 foo.bar.com/blah 发送到 blah.bar.com。

从技术上讲,/blah 并不存在,但我希望在达到这一点之前能够实现服务器重定向。

以前有人必须这样做吗?

解决办法是什么?

I have been trying to figure this out for about 2 hours now. A new requirement came up where it was asked of me to try to find a way to send requests from foo.bar.com/blah to blah.bar.com.

Technically /blah doesn't exist, but I was hoping to have the server redirect before it gets to that point.

Has anyone had to do this before?

What was the solution?

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

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

发布评论

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

评论(1

故人的歌 2024-08-18 21:17:57

尝试这个 mod_rewrite 规则:

RewriteEngine on
RewriteCond %{HTTP_HOST} =foo.bar.example
RewriteRule ^blah$ http://blah.bar.example

或者对于任意 URL 路径:

RewriteEngine on
RewriteCond %{HTTP_HOST} =foo.bar.example
RewriteRule ^ http://blah.bar.example%{REQUEST_URI}

如果您想要不透明的重定向,请通过添加 P 标志 到您的规则。对于永久重定向,请使用 R=301

Try this mod_rewrite rule:

RewriteEngine on
RewriteCond %{HTTP_HOST} =foo.bar.example
RewriteRule ^blah$ http://blah.bar.example

Or for an arbitrary URL path:

RewriteEngine on
RewriteCond %{HTTP_HOST} =foo.bar.example
RewriteRule ^ http://blah.bar.example%{REQUEST_URI}

If you want an untransparent redirect, use a proxy for the request by adding the P flag to your rule. And for a permanent redirect, use R=301.

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