Im starting with Zend Framework, and on their site there is this:
http://framework.zend.com/manual/en/zend.controller.html#zend.controller.quickstart.go.rewrite
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
How to put that to good use? What should i do to get this to work? Now when i load my site i get 500 internal server error... :)
Should i change REQUEST_FILENAME to something else?
Im still very new to htaccess and mod_rewrite...
Im using WAMPSERVER...