0
How to hide the URL (or URL masking)
New Here
,
/t5/coldfusion-discussions/how-to-hide-the-url-or-url-masking/td-p/794385
Apr 20, 2006
Apr 20, 2006
Copy link to clipboard
Copied
Hi All,
Does anyone know how to hide the URL in the address bar. I saw some site looks like this:
http://www.site.com/contact
When I try to figure out which page this redirect to, I couldn't find out.
Here is a good example:
http://www.opensourcecu.com/
Contact Page: http://www.opensourcecu.com/contact
About Page: http://www.opensourcecu.com/pages/about
Thanks for any help!
Does anyone know how to hide the URL in the address bar. I saw some site looks like this:
http://www.site.com/contact
When I try to figure out which page this redirect to, I couldn't find out.
Here is a good example:
http://www.opensourcecu.com/
Contact Page: http://www.opensourcecu.com/contact
About Page: http://www.opensourcecu.com/pages/about
Thanks for any help!
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Explorer
,
/t5/coldfusion-discussions/how-to-hide-the-url-or-url-masking/m-p/794386#M73763
Apr 21, 2006
Apr 21, 2006
Copy link to clipboard
Copied
you dont need to add file name if you are requesting the
default document.
e,g www.mysite.com/index.cfm can be reached with www.mysite.com
so.
www.mysite.com/contact/index.cfm can be reached with www.mysite.com/contact/
e,g www.mysite.com/index.cfm can be reached with www.mysite.com
so.
www.mysite.com/contact/index.cfm can be reached with www.mysite.com/contact/
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
EZStudio04
AUTHOR
New Here
,
/t5/coldfusion-discussions/how-to-hide-the-url-or-url-masking/m-p/794387#M73764
Apr 24, 2006
Apr 24, 2006
Copy link to clipboard
Copied
Thank you for you apply, stpza.
but what I want is something like this,
http://www.opensourcecu.com/pages/about
not
http://www.opensourcecu.com/pages/about/
anybody has better idea?
thanks!
but what I want is something like this,
http://www.opensourcecu.com/pages/about
not
http://www.opensourcecu.com/pages/about/
anybody has better idea?
thanks!
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
New Here
,
/t5/coldfusion-discussions/how-to-hide-the-url-or-url-masking/m-p/794388#M73765
Apr 24, 2006
Apr 24, 2006
Copy link to clipboard
Copied
When using the URL you won't need the trailing /
So
http://www.opensourcecu.com/pages/about
will provided index.cfm is set up as a default document display
http://www.opensourcecu.com/pages/about/index.cfm
Hope this helps
Ben
So
http://www.opensourcecu.com/pages/about
will provided index.cfm is set up as a default document display
http://www.opensourcecu.com/pages/about/index.cfm
Hope this helps
Ben
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Participant
,
/t5/coldfusion-discussions/how-to-hide-the-url-or-url-masking/m-p/794389#M73766
Apr 24, 2006
Apr 24, 2006
Copy link to clipboard
Copied
quote:
Originally posted by: benbest
When using the URL you won't need the trailing /
So
http://www.opensourcecu.com/pages/about
will provided index.cfm is set up as a default document display
http://www.opensourcecu.com/pages/about/index.cfm
Hope this helps
Ben
Maybe he's asking... /pages/ is the directory ; and about or contact is just a page ...not a new directory, therefore, about/index.cfm is not the case here.
I've seen blogs create things like that, which looks like a directory & don't actually exist....but, I personally don't know how it's done.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Participant
,
LATEST
/t5/coldfusion-discussions/how-to-hide-the-url-or-url-masking/m-p/794390#M73767
Apr 25, 2006
Apr 25, 2006
Copy link to clipboard
Copied
What server are you using?
If it's Apache, use mod_rewrite.
If it's IIS, read this:
http://www.petefreitag.com/item/286.cfm
If you don't have the ability to set these up on your server, you can achieve a similar effect by using www.domain.com/index.cfm/about
And then in index.cfm (or better, application.cfm) have something similar to this:
If it's Apache, use mod_rewrite.
If it's IIS, read this:
http://www.petefreitag.com/item/286.cfm
If you don't have the ability to set these up on your server, you can achieve a similar effect by using www.domain.com/index.cfm/about
And then in index.cfm (or better, application.cfm) have something similar to this:
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

