Hi,
I just tried to upgrade to Apache2 and big problems showed.
I used special configuration in httpd.conf to always call one PHP file, which was producing all pages.
Ex. from http.conf
DocumentRoot "C:/Program files/Apache1/htdocs/pagebuilder/index.php"
The file index.php got called everytime and I parsed $HTTP_SERVER_VARS["PATH_INFO"] and $HTTP_SERVER_VARS["QUERY_STRING"] and showed some page from disk. This setup has some advantages I need.
But in Apache2 it's not working anymore. PHP is not handler, it's filter now and DocumentRoot cannot have php file at the end.
I tried even this:
www.xx/index.php/something/anything (it was working in apache1 without problems - and $PATH_INFO was "/something/anything"), but now I cannot make it work. It this will work, the DocumentRoot problem can be probably solved with mod_rewrite.
Do anyone have any idea, how to mimic the function of this thing in Apache2? It will help me much. Otherwise I'm sticked with Apache1 🙁 Thanks for any help.