Hi,

I’m getting a lot of "File does not exist" in my apache log but I can’t see why

[Tue Sep 23 09:29:47 2008] [error] [client 82.244.21.2] File does not exist: /www/monescapade.fr/public/bourgogne [Tue Sep 23 09:30:06 2008] [error] [client 82.244.21.2] File does not exist: /www/monescapade.fr/public/rhone-alpes

bourgogne, rhone-alpes … are geographic areas and are part of my query. And I can't see anuthing requesting those file in my html.

My routes are defined like follow:

// Région/Département route
$route = new Zend_Controller_Router_Route(':area/*',
array(
'module' => 'properties',
'controller' => 'index',
'action' => 'search-by-area',
'subdomain' => 'chambres-hotes'));
$router->addRoute('search-by-area', $route);

// Fiche hebergement
$route = new Zend_Controller_Router_Route(':region/:departement/:name/:id/:action/*',
array(
'module' => 'properties',
'controller' => 'index',
'action' => 'overview',
'subdomain' => 'chambres-hotes'),
array('id' => '\d+')
);
$router->addRoute('details', $route);


And I’m using this apache rewrite rule

RewriteEngine on
RewriteRule !\.(pdf|php|js|ico|txt|gif|jpg|jpeg|png|swf|css|rss|zip|tar|rar|\.gz)$ index.php


The error seam to occur when a property detail is displayed.

http://chambres-hotes.monescapade.fr/auvergne/puy-de-dome/la-lauzeraie/105


Does any one have any pointers?

Regards,

--
Laurent Melmoux
Conseil et Solutions Web | [EMAIL PROTECTED]
2mx - Annecy, France     | http://www.2mx.fr/

Reply via email to