The Zend Framework based site I have been working on is now being migrated to its production server. This server turns out to be nginx (surprise!). Naturally the site does not w
Actually i run a nginx with a drupal site that work like zend framework: one index.php as bootstrap
this is the rule (not tested on zend framework, just on drupal, but should be similar)
location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?q=$1 last;
break;
}
}
error_page 404 /index.php;