There's a couple of ways of achieving this, and it kind of depends on what kind of HTML these URIs need to be extracted from. If you are only dealing with images, links, stylesheets, and other HTML specific imports then you could try an approach based on DNS redirect. I'm going to assume that you have access to some extra resources, specifically a web server or servlet container, and have the ability to control the DNS to that server.
So first off parse your document on creation to extract all referenced host names (or if it is just specific hostnames, look for them). Then use those hostnames (and ports if specified) as a key to a database lookup. Converting your hostname into a unique code. If you don't find an an entry for that hostname, create one and add it. Basically convert your hostname into a representative code. Now for some DNS trickery. take your unqiuely generated code and append it to some DNS that has been set up to point to your aforementioned web server. To do this you'll need to set up DNS wildcards. So to take an example. Say if your source content looks like:
<p>Why is it that all my baking ends up on <a href="http://cakewrecks.blogspot.com/p/faq.html">the internet</a></p>
You extract the hostname cakewrecks.blogspot.com. Look it up in your conversion table and convert it into a representative code, say 11ag3. This then gets appended to the web server hostname e.g. 11ag3.content.mycompany.com
Now you take your new hostname and insert that back into your content.
<p>Why is it that all my baking ends up on <a href="http://11ag3.content.mycompany.com/p/faq.html">the internet</a></p>
Next you'll need to write a servlet (or potentially some other dynamic code). What this should do is intercept any incoming HTTP request (all your requests from your content should now end up at this servlet rather than where they originally went). So the servlet receives a request for
http://11ag3.content.mycompany.com/p/faq.html
It extracts the hostname 11ag3.content.mycompany.com, and from that the unique code 11ag3. It now does the inverse of what we did at creation of the document and looks up the original hostname, and puts it back into the request, hence reconstructing http://cakewrecks.blogspot.com/p/faq.html. It now responds to the request with an HTTP 300 state code (probably 307, temporary redirect) along with the reconstructed URL.
The big advantage here is that you now have a database table that contains all your hostnames. If you want to change where some content is served from you can just update the appropriate entry with the new hostname. Additionally you can avoid the overhead of templating every page each time you serve it.
The main problem with this approach may be flash, which has a complicated security model. You might be able to get it working by delving into the complex world of cross domain policies though.