-- Thomas VEQUAUD <[email protected]> wrote
(on Friday, 23 January 2009, 06:06 PM +0100):
> 
> Hi there,
> 
> I'm developing my third project with Zend on a Linux server but this time it's
> with Zend Core for Oracle. So, the Apache server, PHP module are already
> configured for Zend (I mean that rewrite module is enabled).
> 
> That works with IndexController but 404 error when I try to access to another
> controller...
> The requested URL /About/ was not found on this server
> I don't finish my controllers, view helpers nor the bootstrap by ?>
> What the fuck!?!?
> 
> Here is my .htaccess :
> RewriteEngine on
> RewriteCond %{SCRIPT_FILENAME} !-f
> RewriteCond %{SCRIPT_FILENAME} !-d
> RewriteRule ^(.*)$ index.php/$1

Change the above line to:

    RewriteRule ^.*$ index.php [NC,L]

and see if it has any effect

> php_flag magic_quotes_gpc off
> php_flag register_globals off

-- 
Matthew Weier O'Phinney
Software Architect       | [email protected]
Zend Framework           | http://framework.zend.com/

Reply via email to