I am having no luck still with this issue. Here's the config on my files. ( I removed comments for space).
httpd.conf:
DocumentRoot "/Library/WebServer/Documents"
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
<Directory "/Library/WebServer/Documents">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Options FollowSymLinks
Order allow,deny
Allow from all
Options Indexes MultiViews
AllowOverride AuthConfig
</Directory>
<Directory "/Library/WebServer/Documents/budgetobjects">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
The important directory for me is /Library/WebServer/Documents/budgetobjects
in it I have an .htaccess file with the following:
SetEnv APPLICATION_ENV development
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
yet when i try to go to the location
http://localhost/budgetobjects/CompanyInfo/ I get a 404 error : The requested URL /budgetobjects/CompanyInfo/ was not found on this server.
In my error log I see the following message: /Library/WebServer/Documents/budgetobjects/CompanyInfo.
Of course the file does not exist but isn't Zend supposed to translate this into the proper path to go to my index.php?
Thanks for any help.
JR