码迷,mamicode.com
首页 > 其他好文 > 详细

lumen 配置、重写、404错误等

时间:2016-04-18 16:58:47      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

1、权限是否有设置为777;

2、app key是否有设置;

3、apache下是否有开启重写,a2enmod;

4、nginx下server的location是否配置正确,重写规则有没添加,route的路由有没有写全,即"xxx/public/xxx";

location lumen/public/ {
    root   ‘/var/www/html/80/lumen/public‘;
    index  index.html index.htm index.php;
    try_files $uri $uri/ /index.php?$query_string;
}

 

$app->get(‘lumen/public/‘, function () use ($app) {
    return $app->welcome();
});

  

lumen 配置、重写、404错误等

标签:

原文地址:http://www.cnblogs.com/linguoguo/p/5404980.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!