Akrambek
Akrambek

Reputation: 89

Page not found in zend framework

I cannot access other modules(pages). I can access only public directory http://localhost:88/hotelrwanda/public. I put the project into development mode and enable error display but nothing. Can you give any solution.

Upvotes: 0

Views: 1735

Answers (1)

Andreas Linden
Andreas Linden

Reputation: 12721

Have you setup the zend default rewrite rules?

public/.htaccess

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [L]

Upvotes: 1

Related Questions