PDA

View Full Version : how do I get to cover the Url of my site?


cheese roller
09-03-2003, 10:13 PM
How do I get to cover the Url of ,y site so no one can know where it is?

liorean
09-03-2003, 10:24 PM
You can't hide a url, since the url is needed for locating the site and thus needs to be sent to the client in some way, unobscured. You can do silent relaying, however, but that is practically the same thing, except for that the relayer address replaces the original address, and the document can thus be found at that location, though relayed from another, hidden location.

lavalamp
09-03-2003, 10:25 PM
If you use ASP, have this as your source for your index.asp:

<%@ Language=VBScript %>

<!--#include file="realpage.html"-->

And that way it will write the content of realpage.html onto the page index.asp. That way no-one will know the real URL of the page. Although I'm not sure whatt purpose this will serve.