lumen路由配置nginx
nginx配置文件中添加:
set $root_path '/data/www/m.domain.com/public';
root $root_path;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
框架目录下的routes/web.php中添加测试代码
$app->get('test/show', 'TestController@show');
然后添加TestController控制器和show方法
访问测试地址
http://m.domain.com/test/show
posted on 2017-05-19 09:32 dongruiha 阅读(3411) 评论(0) 编辑 收藏 举报