Installing PHP with Apache?????

A

Anonymous

Guest
Add the following lines in you httpd.conf (if they are not there):

AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
AddType application/x-httpd-php .php3
AddType application/x-httpd-php-source .phps


and change this line:

<IfModule mod_dir.c>
DirectoryIndex index.html index.htm index.shtml index.php index.php4 index.php3 index.phtml index.cgi
</IfModule>


for your index.php files.
 
Back
Top