如何使用 Apache mod_rewrite 或 RewriteCond 重写外部链接(重定向到退出页面)?
老实说,我花了几个小时试图找到解决方案(而且我通常很擅长寻找解决方案),但我似乎有一个独特的问题。
假设我的当前网址是http://www.something.com
我想将网页内的所有外部链接更改为以下内容
1. <a href="http://other.something.com">other</a>
2. <a href="http://www.google.com">google</a>
......这个:
我没有 PHP 或 ASP。假设我的网站仅为静态 HTML。有可行的 Apache URL 重写解决方案吗?
谢谢
I honestly spent hours trying to find a solution (and I'm normally good searching for solutions), but I seem to have an unique problem.
Let's assume that my current URL is http://www.something.com
I want to change all external links within webpages like the ones below...
1. <a href="http://other.something.com">other</a>
2. <a href="http://www.google.com">google</a>
... to this:
- <a href="http://www.something.com/redirect.htm?
http://other.something.com
">other</a> - <a href="http://www.something.com/redirect.htm?
http://www.google.com
">google</a>
I do NOT have PHP or ASP. Let's assume that my website is static HTML only. Is there a workable Apache URL rewrite solution?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试 mod_proxy_html。引用自配置指南:
You can try mod_proxy_html. Quote from config guide:
mod_substitute 可能是一种替代方案。
从好的方面来说,它包含在默认的 apache 发行版中,可能足以解决您的问题。
编辑
如果您的网站确实是一组静态 html 页面,为什么不使用适当的 HTML DOM 工具?
mod_substitute might be an alternative.
On the plus side, it is included in the default apache distribution and might be just enough to resolve your problem.
Edit
If your site is indeed a set of static html pages, why not do an off-line transformation of them using a proper HTML DOM tool?