Apache Mod-跨域重写?

发布于 2024-12-02 16:58:31 字数 242 浏览 0 评论 0原文

好的,我有一个网站,位于 www.domain.com。我在 heroku 上添加了一个 Web 应用程序,它有 Heroku URL 和自定义域。然而,我想做的是通过这两个 URL 访问它,但在 www.domain.com 站点上,我想通过 www.domain.com/customapp 访问该新服务器。我想我可以通过 URL 重写来做到这一点。但我看到的所有例子都是相反的,那么我的想法可能吗? mod-rewrite 是正确的出路吗?

谢谢。

OK, I have a site, at www.domain.com. I added a web app on heroku and it has it Heroku URL and a custom domain. However, what I'd like to do is have it accessible via those two URL but on the www.domain.com site, I'd like to access that new server via www.domain.com/customapp. I figured I could do it through URL rewrite. But all the examples I see are doing the the other way, so is my idea possible? Is mod-rewrite the way to go?

Thanks.

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

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

发布评论

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

评论(1

清风不识月 2024-12-09 16:58:31

为什么不尝试为 www.domain.com 设置反向代理?假设您使用的是 Apache 2.2,如果您有权访问 httpd.conf 或 httpd-vhosts.conf 文件,那么这很容易做到。

对于您的情况,我会将以下内容添加到您的 httpd.conf 或 httpd-vhosts.conf 文件中。

ProxyRequests Off

ProxyPass /customapp/ <URL-to-Heroku-App>
ProxyPassReverse /customapp/ <URL-to-Heroku-App> 

有关更多信息,请参阅文档。

http://httpd.apache.org/docs/2.2/mod/mod_proxy .html#proxypassreverse

Why don't you try setting up a reverse proxy for www.domain.com? Assuming you are using Apache 2.2, it's pretty easy to do if you have access to the httpd.conf or httpd-vhosts.conf file.

In your case I would add the following to your httpd.conf or httpd-vhosts.conf file.

ProxyRequests Off

ProxyPass /customapp/ <URL-to-Heroku-App>
ProxyPassReverse /customapp/ <URL-to-Heroku-App> 

For more information, see the docs.

http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxypassreverse

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