手册:http://www.laruence.com/manual/tutorial.firstpage.html
正确的应该是
server {
listen ****;
server_name domain.com;
root document_root;
index index.php index.html index.htm;
if (!-e $request_filename) {
rewrite ^/(.*) /index.php?$1 last;
}
}