Is their a way to set up a web site so that website urls are not displayed
including querystrings. Instead all that is seen in the domain name like.
www.mydomain.com

Answers appreciated !!!

Re: Hiding Urls In Browser Windows by Ken

Ken
Sat May 08 06:26:57 CDT 2004

Frames / iframes

are the only way. The user can, however, get the real URL easily enough
(e.g. by right-clicking and choose "Properties"). Remember, the *browser*
needs to access the "real" URL, and since the browser is on a machine that
is completely under the control of the user, there is now way you can hide
this information from a determined user.

Cheers
Ken

"Adam Knight" <adam.jknight@optusnet.com.au> wrote in message
news:ea2kz5ONEHA.1688@TK2MSFTNGP10.phx.gbl...
: Is their a way to set up a web site so that website urls are not displayed
: including querystrings. Instead all that is seen in the domain name like.
: www.mydomain.com
:
: Answers appreciated !!!
:
:
:



Re: Hiding Urls In Browser Windows by David

David
Sat May 08 18:07:39 CDT 2004

It is not possible to have a website that has links and not display website
URLs.

Bottom line:
Navigating a website requires the client to send SOMETHING different to the
server to indicate the act of navigation. HTTP is stateless, so this
"difference" must be transferred somehow -- either as state transferred as
cookies passed between the client/server (and can be sniffed), or in the
form of different URLs and/or querystring.

Normal web browsers only allow the user to send different URLs, querystring,
or FORM parameters to the web server -- so if you don't want the client to
display different website URLs and querystring, you can only send pages that
send POST'd FORM parameters to the web server. This means all your pages
must be forms that send POST to the lone displayed URL, and that URL must
parse parameters out of the POST and send back the appropriate page content.

This scheme is instantly unfriendly to Search Engines and places a huge
clamp on webpage design and server-side tools (URL/querystring is cheap to
modify; entity body is not).

If you have existing web pages, they must all be re-written such that they
send navigation hints via FORM parameters.

--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Adam Knight" <adam.jknight@optusnet.com.au> wrote in message
news:ea2kz5ONEHA.1688@TK2MSFTNGP10.phx.gbl...
Is their a way to set up a web site so that website urls are not displayed
including querystrings. Instead all that is seen in the domain name like.
www.mydomain.com

Answers appreciated !!!






Re: Hiding Urls In Browser Windows by Kristofer

Kristofer
Sun May 09 12:07:53 CDT 2004

Hello,

Is there any specific reason why you want this? Many people do this because
they think that hiding the real URL means that they can put whatever
sensitive information in the URL. This is not true, the URL is always
available in one or another way, it is just a matter how difficult it is to
see it. If this is the reason why you do it, i suggest that you consider
using another way to not display the sensitive information.

--
Regards,
Kristofer Gafvert - IIS MVP
http://www.ilopia.com - When you need help!


"Adam Knight" <adam.jknight@optusnet.com.au> wrote in message
news:ea2kz5ONEHA.1688@TK2MSFTNGP10.phx.gbl...
> Is their a way to set up a web site so that website urls are not displayed
> including querystrings. Instead all that is seen in the domain name like.
> www.mydomain.com
>
> Answers appreciated !!!
>
>
>