htaccess RewriteCond 将指向主域的超链接重定向到子域

发布于 2024-10-22 11:54:14 字数 374 浏览 4 评论 0原文

我需要 htaccess 和 RewriteCond 方面的帮助。

在我的子域 http://staging.foo.com/ 上,我想用 http://foo.org.uk 作为我的子域的前缀 http://staging.foo.org.uk 通过 .htaccess。

对于将哪些内容放入 staging.foo.com 上的 .htaccess 文件有什么想法吗?

I need some assistance with htaccess and RewriteCond.

On my subdomain http://staging.foo.com/ I want to rewrite any hyperlinks with http://foo.org.uk as a prefix to my subdomain http://staging.foo.org.uk by means of .htaccess.

Any ideas of what to put into the .htaccess file on staging.foo.com?

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

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

发布评论

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

评论(1

妳是的陽光 2024-10-29 11:54:14

这对于 mod_rewrite 来说是不可能的。它仅作用于对服务器的请求,而不作用于返回到浏览器的内容。

您可以使用前置和附加脚本对 PHP 执行某些操作。在前置脚本中打开输出缓冲,然后在附加脚本中获取输出缓冲区内容,搜索/替换,然后再次输出。

This isn't possible with mod_rewrite. It only acts on requests to the server, not content that is returned to the browser.

You could do something with PHP using prepend and append scripts. In the prepend script turn on output buffering, then in the append script get the output buffer contents, search/replace, then output again.

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