0

first see this problem

<IfModule !mod_php5.c>
    <FilesMatch "\.php$">
        Order allow,deny
        Deny from all
        Allow from none
    </FilesMatch>
 RewriteBase /
</IfModule>

now how i can know the mod_php5.c name becuase it not like that in my host and me is not the host admin this mean i cant see the server

Mostafa Elkady
  • 119
  • 1
  • 6

1 Answers1

1

You have this line in your httpd.conf:

LoadModule php5_module /usr/lib/apache2/modules/libphp5.so

where php5_module is the module name you should use in "IfModule" statement.

fuero
  • 9,413
  • 1
  • 35
  • 40
kolypto
  • 10,738
  • 12
  • 51
  • 66