what I'm trying to do is indeed having my webserver behave as a proxy server to access certain sites, I don't really get your suggestion, though (the /YourPage.php?Page_They_Want_To_Visit=[the original url would go here] part), what would I do with that variable?
here's what I've tried till now:
I have tried to rewrite the references, the problem is this: the site I'm trying to log in to uses frames, hence the output I receive looks like somewhat this:
<frameset>
<frame src="1.html">
<frame src="2.html">
</frameset>
which left me with two 404 error pages
I replaced the references with absolute paths "http//remote_server/1.html" which resulted in the 2 pages I was looking for. however, in those pages, the links are relative as well; since my browser assumes that I'm still working on my local server, it tries to resolve these links on my local server, which doesn't do much. because the output I receive is merely the definition of the framespage and not the actual frames, there's no way for me to rewrite the references in the actual frames (or is there?)