Hi,
I'm running Apache 1.3 using adobe's java application server JRun3.
Besides executing JSP files, I would like to be able to execute PHP
scripts too.
This only works, if I disable JRun in the virtual host section, which
shows me that everything works and the problem is that JRun handles
PHP requests, but does not execute them.
Does anybody know how I could explicitly tell apache NOT to forward
requests ending with ".php" and instead executing them directly. Now,
it seems that apache passes all requests to JRun.
Here is the virtual host section:
<VirtualHost 111.111.111.111>
ServerName www.domain-handled-by-jrun.de
DocumentRoot /opt/JRun/servers/default/documentroot
AddType application/x-httpd-php .php .htm .html
<IfModule mod_jrun.c>
JRunConfig jrun.rootdir /opt/JRun
JRunConfig jvmlist default
JRunConfig Verbose false
AddHandler jrunhandler .jsp .lxjsp
</IfModule>
</VirtualHost>
