The page being called when referencing just a folder is index.htm, index.html, index.cfm, index.asp, etc. You can easily accomplish this by each page being contained in it's own folder and referencing just the folder in links.
<a href="folder/">Link</a> rather than <a href="folder/index.cfm">Link</a>
DeZiner
Never be afraid to try something new.
Remember that amateurs built the Ark.
Professionals built the Titanic
There are also web applications... Content Management Systems for example... that use executables/files without file extensions.
You can do this yourself, if you happen to have a /cgi-bin directory and your web server is set up correctly. The /cgi-bin directory is generally set up to allow a web server to execute the scripts within. So if you produce a CGI or PERL script and don't name it with a file extension... for example "showmessage" rather than "showmessage.cgi" or "showmessage.pl"... then you can get the script to run by simply browsing to
Now suppose that a directory other than cgi-bin was set up the same way. As I said, this is a common way to develop a content management system. Say it sits under a directory off of webroot called "content", and simply contains a C++ app named "page".
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.