I had downloaded Apache Tomcat for developing Java Servelets, then I thought of using PHP also, I referred this for help on setting up Apache Server for PHP, and it says:
To configure Apache to run PHP, the httpd.conf file needs to be modified. This file is located in the apache installation directory under the conf folder. Open the httpd.conf file in EditRocket and do the following:
A. Add the following line after all of the LoadModule statements:
LoadModule php5_module "c:/php/php5apache2_2.dll"
B. Search for AddType, and add the following after the last AddType line:
AddType application/x-httpd-php .php
C. Add the PHP location to the end of the httpd.conf file. For example, at the end of the file, add the following:
PHPIniDir "c:/php"
I looked under the C:\apache-tomcat-7.0.4\conf, but there is no file as httpd.conf.
Is there any other version which I'll have to download? Or can Tomcat run it with some plugin or something?