如果你用的是phpstudy,并且是 nginx 是服務(wù)器你需要做的是:
在phpstudy 中找到配置文件 nginx.conf 我的是這個(gè),可能有的是 vhosts.conf 配置文件,只要替換下面這個(gè)就行了;
location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1 last;
}
}