Hello everyone,
I would like to know if it is possible to setup the
following scenario using Apache 2.x:
lets say a browser requests the following url:
http://www.mysite.com/faq/general
in htdocs i have the following structure:
htdocs/faq/general
htdocs/faq/index.php
htdocs/faq/general/index.html
I want the following:
if the file htdocs/faq/general/index.html _exists_ then
apache should return it
otherwise apache should call the file
htdocs/faq/index.php
and pass PATH_INFO = general
I do not require that the directory structure
stays as described, just an easy/elegant solution
to implement this scenario. If possible, I would
prefer avoiding mod_rewrite.
Any help will be really appreciated!
George Moschovitis