I have done a fresh installation of xampp , after installing the folder containing following htaccess
file is not showing in my browser.
SetEnv APPLICATION_ENV development
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
it gives 500 error and the server is overloaded
This happens when I am trying to execute the public folder in my zend application.
Please suggest to me whether I have to do any modifications in my xampp for getting my .htaccess
file to execute correctly.
Thanks in advance