Well, I've just started following IBM's "Understanding the Zend Framework" series. I realize it was designed for Zend Framework 0.1.4; thus, I had to add the no norouteAction() and have it call indexAction. The problem i'm having is on the
Controllers, actions, and the URL section. I can access 127.0.0.1/framework/ and it works fine, however, if I access 127.0.0.1/framework/user I don't get a "This is the indexAction." message I'm suppose to be getting.
Yes, I did copy and past right; yes, i did name the files right. I feel that this could be a .htaccess issue.
My current .htaccess is:
Options +FollowSymLinks
RewriteEngine on
RewriteRule !\.(js|ico|gif|jpg|png|css|php)$ index.php
php_value include_path ".;libs/ZendFramework/library"
Note: I had to include Options +FollowSymLinks or the rewrite engine would fail with a 403 error message for some stupid reason.