1. 处理所有请求到单一入口 ( rewrite all requests to index.php with nginx )
目前我们做开发一般都是单入口的,所以都会使用web服务器做重定向到入口文件
rewrite ^/(.*)$ /index.php?/$1 last;
在nginx中加入这项配置就好了
或者可以使用htaccess文件
RewriteRule . index.php2.Nginx出现的413 Request Entity Too Large错误
这个错误一般在上传文件的时候出现,打开nginx主配置文件nginx conf,找到http{}段,添加或者修改
client_max_body_size 2m;
然后重启 reload nginx 服务