nginx配置 php 单入口

location / {
            root   html;
            index  index.html index.htm index.php;

            if (!-e $request_filename) {
                rewrite ^(.*)$ /index.php last;
                break;
            }
        }

posted @ 2016-02-18 16:05  茫海  阅读(887)  评论(0)    收藏  举报