如何让脚本在发出 http 请求时运行?

发布于 2024-11-06 06:36:59 字数 210 浏览 0 评论 0原文

我有 2 个网络服务器。一个托管我的主网站 (www.site.com),另一个托管一个子域 (sub.site.com)。按照我的设置方式,每当您访问子域时,它都会首先使用 mod_proxy 通过主服务器进行路由。在主 Web 服务器上,我有一个 php 脚本,可以在每次访问网页时记录信息。我希望发生的是,每当有人访问子域时,日志记录脚本都会在主服务器上运行,然后再将请求发送到子域服务器。这可能吗?

I have 2 web servers. One hosts my main website (www.site.com), and the other hosts a subdomain (sub.site.com). The way I have it set up, any time you go to the subdomain, it routes through the main server first, using mod_proxy. On the main web server I have a php script that logs information any time a web page is accessed. What I would like to happen is anytime someone accesses the subdomain, the logging script runs on the main server before sending the request on to the subdomain server. Is this possible?

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

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

发布评论

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

评论(2

指尖上得阳光 2024-11-13 06:36:59

从子域到主站点的 cURL 请求传递所有请求标头怎么样?

How about a cURL request from the subdomain to the main site, passing along all of the request headers?

め七分饶幸 2024-11-13 06:36:59

您可以使用前端控制器样式来根据需要重定向每个请求吗?或者也许可以使用面向方面的编程来创建切入点并透明地附加日志记录代码?

Could you use a front controller style that redirects every request as needed? Or maybe make a pointcut and attach logging code transparently by using Aspect Oriented Programming?

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