`phpstudy`作为windows上的一款好用`php`集成开发环境
能够帮助我们节约大量的时间,让我们把时间花在开发上
怎么让`phpstudy`支持`laravel`
我们必须通过`phpstudy`的图形界面来修改,`一定不能`直接编辑器修改`配置文件`,不然改了也白改,会直接被覆盖掉
想让`phpstudy`支持`laravel`
一定要在`错误页面`中加入
>error_page 403 /error/403.html;
error_page 404 /error/404.html;
`if (!-e $request_filename) {`
`rewrite ^/(.*)$ /index.php/$1 last;`
`}`
记得重启`nginx`服务器 ,如下图所示
![](https://www.yuanchengzhushou.cn/static/image/7989_1.jpg)
![](https://www.yuanchengzhushou.cn/static/image/7989_2.jpg)