I am trying to prevent a particular folder to parse PHP files. I have used the following code in .htaccess
php_flag engine off
It is giving me 'Internal Server Error'
Then I tried this:
<IfModule mod_php5.c>
php_flag engine off
</IfModule>
But, the second one doesn't seems working. How can i prevent the particular folder other than this?