nginx slim

nginx conf for slim
location / {
    root /var/www/project/;
    index index.php index.html;
    if (!-f $request_filename) {
        rewrite ^(.*)$ /index.php last;
    }
}

猜你喜欢

转载自ggsonic.iteye.com/blog/1377800