View Single Post
  #2 (permalink)  
Old 11-24-2007, 09:27 PM
conradwt conradwt is offline
Member
 
Join Date: Nov 2007
Posts: 33
Default [SOLUTION] 404 Error Invoking non-indexController in Mac OS X

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
Reply With Quote