i would like to ask that how to configure the httpd.conf so that when apache receive a php3 file request, it will use php4 intepreter to run php3 file? thx a lot!
Read the manual: http://www.php.net/manual/en/install.apache.php point 17:
AddType application/x-httpd-php .php
change to AddType application/x-httpd-php .php .php3
You can add as many extentions as you like, including .html .htm etc.
yup, thx a lot!