nginx配置文件中添加:php
set $root_path '/data/www/m.domain.com/public';
root $root_path;nginx
location / {
try_files $uri $uri/ /index.php?$query_string;
}web
框架目錄下的routes/web.php中添加測試代碼app
$app->get('test/show', 'TestController@show');框架
而後添加TestController控制器和show方法
訪問測試地址
http://m.domain.com/test/show