an example url http://www.aboutus.org/yahoo.com How to make a query like above URL without any question mark for an asp site? Thanks
You will need to do some sort of URL re-writing. I prefer Ionics Isapi Rewrite Filter. http://www.codeplex.com/IIRF
Thanks Dgxshiny for the link info. But I am using a share web hosting. Can some one let me know what kind hosting service provide these kind of services? Thanks
Why would you want to remove the query string? only other way i can think of is to have dynamic folders....
Please give us the reason as "?" is used as a delimiter for the URL parameters Try URL encoding Also what does your link looks like
option one: ask your host to install an asapi filter that allows url rewriting option two: manually add the real folders but just have hook files in them - so they all include one file - then that file detects the folder and outputs content accordingly option three: use .NET - I believe you can ask your host provider to setup X ype of files to run through the asp.net engine, which will allow you to overwrite the http context and render anything anywhere option four: use php/.htaccess mod-rewrite
Hi JJNacy, In this post: http://forums.digitalpoint.com/showthread.php?p=9721822#post9721822 I posted another possible solution that you can use easily on most shared hosts, by creating a custom error 404 page that reads the url and displays the appropriate page, without altering the url in the browser... This is done using asp.net, but you could use the same principle and achieve the same result in classic asp.