- How to hide an url
- Posted by Luc Dal on June 4th, 2005
Hello,
How can I hide an url ?
ex : I want to open a page http://www.monsite.com/index.htm but i want the
client sees only http://www.monsite.com
It's elementary, but I don't see how to do this
Thanks for your assistance
Luc
- Posted by Adrienne on June 4th, 2005
Gazing into my crystal ball I observed "Luc Dal" <dal@sped.ucl.ac.be>
writing in news:d7scd4$icj$1@ail.sri.ucl.ac.be:
Why do you want to hide the URL? Visitors often copy and paste the URL
into other applications, emails, letters, other browsers, etc.
If you are worried about hiding a querystring on a GET method form, use
POST instead.
--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
- Posted by Cycloneous Echevarria on June 6th, 2005
Try this:
<html>
<frameset rows = "100%, *">
<frame src = "http://www.monsite.com/YOURPAGE.htm">
</frameset>
</html>
Make sure you name the frame document index.htm or index.html
Cycloneous
Luc Dal wrote:


