Hi, I resolved the issue that I was seeing in regards to the 404 errors for non-IndexController. In Leopard, the httpd.conf sets the default:
AllowOverride None
within
Quote:
<Directory "/Library/WebServer/Documents">
...
</Directory>
|
This needs to be changed to
AllowOverride All
Finally, after you make this change to your httpd.conf file and restart Apache, then you should be able to invoke the non-IndexController successfully.
-Conrad