Reputation: 1739
I am trying to start with zend. I followed this guide.I am using wamp. http://zf2.readthedocs.org/en/latest/user-guide/skeleton-application.html It says all the dependencies will be installed and yes I see framework in the vendor folder after the installation. I configured the virtual hosts how he told me to. But I just can't get started. It gives me Internal server error. Tried to access it using localhost/zf2-tutorial . But I dont see any public folder. I just don't know where I am doing wrong. Please help me
Upvotes: 0
Views: 643
Reputation: 131811
C:/wamp/www/zf2-tutorial/public/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
(See comment of the question)
Next time, please google for the error message ;) However, it tells you, that mod_rewrite
is either not installed, or enabled. On Linux it's like
sudo a2enmod rewrite
and restart server. I see, you are using Windows, but I must say I don't know ;) I fear you'll find very much about this problem, when you look around, because it's a quite common problem.
Upvotes: 1