Im trying to get mod rewrites to work. I have a .htaccess set in my root directory where my index.php document is at but its not working correctly. My .htaccess contains the following
RewriteEngine on
RewriteBase /
RewriteRule !.(js|ico|txt|gif|jpg|png|css)$ index.php
which enables all request to be forwarded to index.php. but when I type in an unknown page, instead of it going back to index.php, it says it cant find the page
Not Found
The requested URL /zend/index/test was not found on this server.
above is the error I get
Im trying to use the zend framework. and I got it to work for the index, but for any other actions im guessing its not going back to index again. can anyone help me
this is my first time making a htaccess so im not even sure if my php.ini is configure to read .htaccess files