I installed the modul URL-Rewrite Modul for IIS 7.5 and following the description of Rob Allen I created the rule for rewriting:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^.*$ index.php [NC,L]
Then I insatlled the ZendFramework 2 also following a tutorial by Rob Allen.
It is working, if I call myserver then the welcome screen of ZF2 appears.
If I enter an URL which does not exist on the server, the 404 error message of ZF2 appears, so far URL rewrite works as expected.
Then I teached myself using the tutorial von Rob Allen for ZendFramework2:
(http://akrabat.com/wp-content/upload...ramework-2.pdf)
now I want to call following URL:
myserver/zf2-tutorial/album
but still it only appears error 404.
What I am missing?
Under ZF1 (1.11) there always was an error log showing up in the browser if something went wrong. Can I enable this also for ZF2?
How can I solve my problem now?
Thanks for any help!

