如何使用 Apache mod_rewrite 或 RewriteCond 重写外部链接(重定向到退出页面)?

发布于 2024-11-04 11:25:44 字数 661 浏览 0 评论 0原文

老实说,我花了几个小时试图找到解决方案(而且我通常很擅长寻找解决方案),但我似乎有一个独特的问题。

假设我的当前网址是http://www.something.com

我想将网页内的所有外部链接更改为以下内容

1. <a href="http://other.something.com">other</a>
2. <a href="http://www.google.com">google</a>

......这个:

  1. 其他< /a>
  2. google

我没有 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:

  1. <a href="http://www.something.com/redirect.htm?http://other.something.com">other</a>
  2. <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 技术交流群。

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

发布评论

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

评论(2

緦唸λ蓇 2024-11-11 11:25:44

您可以尝试 mod_proxy_html。引用自配置指南

语法:ProxyHTMLURLMap from-pattern
to-pattern [标志] [条件]

这是关键指令
重写 HTML 链接。当解析一个
文档,每当链接目标
匹配 from-pattern,匹配
部分将被重写为
模式。

You can try mod_proxy_html. Quote from config guide:

Syntax: ProxyHTMLURLMap from-pattern
to-pattern [flags] [cond]

This is the key directive for
rewriting HTML links. When parsing a
document, whenever a link target
matches from-pattern, the matching
portion will be rewritten to
to-pattern.

血之狂魔 2024-11-11 11:25:44

mod_substitute 可能是一种替代方案。

  • 不利的一面是,它是一个不复杂的正则表达式过滤器,具有 所有 缺点
  • 从好的方面来说,它包含在默认的 apache 发行版中,可能足以解决您的问题。

    AddOutputFilterByType SUBSTITUTE text/html
    替换 s|]*)href="http(.?)://(.*)"([^>]*)>||i
    

编辑

如果您的网站确实是一组静态 html 页面,为什么不使用适当的 HTML DOM 工具?

mod_substitute might be an alternative.

  • On the minus side, it is an unsophisticated regexp filter with all its drawbacks.
  • On the plus side, it is included in the default apache distribution and might be just enough to resolve your problem.

    AddOutputFilterByType SUBSTITUTE text/html
    Substitute s|<a([^>]*)href="http(.?)://(.*)"([^>]*)>|<a $1 href="http://www.something.com?redirect=http$2://$3" $4>|i
    

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?

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