nginx 去掉index.php

首先 要开启 rewrite功能

然后 在 vhosts.conf 中 server 下添加:

if (!-f $request_filename) {

  rewrite (.*) /index.php;

}

如此便ok!!!