OK, this may not be the case, but here's what Passenger Documentation recommends:
<VirtualHost *:80>
ServerName www.mycook.com
DocumentRoot /webapps/mycook/public
<Directory /webapps/mycook/public>
Allow from all
Options -MultiViews
</Directory>
</VirtualHost>
It clearly states that MultiViews is not compatible with Passenger.
So you can try:
- Deleting an Index Option
- Assignment
-MultiViewsinsteadMultiViews
, , , , , ... " ", .
UPDATE
, PassengerResolveSymlinksInDocumentRoot:
<VirtualHost *:80>
ServerName www.mycook.com
DocumentRoot /webapps/mycook/public
<Directory /webapps/mycook/public>
Allow from all
Options -MultiViews
PassengerResolveSymlinksInDocumentRoot on
</Directory>
</VirtualHost>