Zend Framework on nginx

前端 未结 8 1265
小蘑菇
小蘑菇 2021-01-30 09:51

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

8条回答
  •  再見小時候
    2021-01-30 10:22

    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;
    

提交回复
热议问题