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