What exactly is it you're trying to do? Do you want, no matter what "page" the user is viewing, it will always have a URL of just www.yoursite.com? If that's the case, I think you're basically looking to recreate a simple webserver in server side scripting. In other words, you would need to write a script (say a PHP script, for instance) that your server will execute whenever it gets a request (that's easy to do) and your script should parse the URL requested by the user, store that in a PHP session var (for instance), tell the browser to redirect back to the root directory (i.e., www.yourserver.com, which you can do using the "Location" HTTP header, for instance with the PHP Header() function), and then when they request that, you can check the session var you saved and use that to determine what content to server up. So it's definitely possible. But if that's really what you're after, it's probably a whole lot more work than it's worth. So once again, I have to ask...what exactly are you trying to accomplish? -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: http://pgp.mit.edu/ > On Wed, Dec 17, 2008 at 5:22 PM, Edwin <ddogej@xxxxxxxxxx> wrote: >> Hey Guys and Girls >> >> I'm seriously under educated when it comes to this server and could use your >> help with what is probably the easiest thing to do. But I got to ask and >> diminish what pride I may have had to begin with. So if you an answer this >> question I thank you in advance. >> >> How do I get the server to hide the actual url path from the viewer. In >> other words how do I get it to say >> >> www.yoursitehere.com >> >> instead of >> >> www.yoursitehere.com/directory/here/there/andthatotherplace/index.html --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx