Hello,
My applications users default library structure created by Zend Studio for Eclipse, i.e
ProjectName
|-application
|-html
|-library
The project is located in a directory outside the web server. What I've done is to "point" to the html folder using the Location directive in http.config (apache)
<Location /erimail>
RewriteEngine on
Order deny,allow
Allow from all
</Location>
Alias /erimail "C:/Documents and Settings/Harald/Zend/workspaces/DefaultWorkspace/erimail 0.5.1/html"
When going to
http://localhost:8080/erimail/
I get responce from the index controller, however any other url fails, stating the url is not valid.
In desperation I copied the same project (withount any modifications) to a subdir "em" of the Apache htdocs folder. Now I can issue:
http://localhost:8080/em/html/
or
http://localhost:8080/em/html/index
and they both fires the index action, just as it shoud.
OK, so everyting seems to work when I coiped the project into the Apache document root folder, but i'll guess it should work without that if I manage to get my configuration correctely.
Btw: I'm using Zend Core, i.e. PHP and Apache configuration is setup by the Zend Core stuff.
Thanks!