标签:ati man 学习 AC img strong image nbsp query
这两天想弄点东西,也想拾一下以前学过的laravel,安装配置完成,卡在路由那了
默认的路由ok
自己写的路由就 404
自己怀疑是 nginx.conf的没有写rewrite
然后自己写了个 ,依旧404
错误代码:rewrite ^http://58.87.108.192/(.*)$ /index.php?$1 permanent;
然后看了些博客,试了下终于找到问题,确实是 nginx路由重写的问题,我的重写不对
应该是在 location里加一条
正确代码:try_files $uri $uri/ /index.php?$query_string;
学习博客:http://www.php.cn/php-weizijiaocheng-100269.html
标签:ati man 学习 AC img strong image nbsp query
原文地址:https://www.cnblogs.com/jwcrxs/p/8951639.html