htaccess RewriteCond 将指向主域的超链接重定向到子域
我需要 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对于 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.