7HUND3RX
7HUND3RX

Reputation: 173

404 Not Found on Zend every link

I am new to zend framwork. I have installed zend server CE on Windows 7. I am not able to browse to any link such as.. http://myproject/signup while http://myproject/ works well and displays the homepage.

Please suggest what can be the problem.

Upvotes: 1

Views: 972

Answers (2)

7HUND3RX
7HUND3RX

Reputation: 173

Got it sorted!

<Directory "E:\Zend\apache2/htdocs/myproject/public">
    Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

This needs to be put in the order they relate in case of multiple dependent zend projects!

Upvotes: 1

Config
Config

Reputation: 1692

Have you set up your .htaccess correctly (using mod_rewrite)?

A basic .htaccess for ZF looks as follows:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

This file should reside in the public directory of your project.

Upvotes: 0

Related Questions