|
发表于 2013-5-13 16:07:22
|
显示全部楼层
我也遇到了 这样的问题 解决的发放是 在location / {
index index.html index.htm index.php;
root /data0/htdocs/www;
if (!-e $request_filename) {
#下面的规则很重要
rewrite "^/(.*)$" /index.php last;
}
}
原帖来自http://blog.csdn.net/ei__nino/article/details/8599304 |
|