切换导航条
此项目
正在载入...
登录
周海龙
/
globalso-v6-c-customer
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
差异文件
浏览文件
作者
刘锟
11 months ago
提交
9d4974a04e00bfabaccf13af7d92c5ca3c82d000
2 个父辈
7cc47eaf
952342c5
Merge remote-tracking branch 'origin/master'
隐藏空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
54 行增加
和
0 行删除
public/.htaccess
public/index.php
public/.htaccess
0 → 100644
查看文件 @
9d4974a
public/index.php
0 → 100644
查看文件 @
9d4974a
<?php
use
Illuminate\Contracts\Http\Kernel
;
use
Illuminate\Http\Request
;
define
(
'LARAVEL_START'
,
microtime
(
true
));
/*
|--------------------------------------------------------------------------
| Check If The Application Is Under Maintenance
|--------------------------------------------------------------------------
|
| If the application is in maintenance / demo mode via the "down" command
| we will load this file so that any pre-rendered content can be shown
| instead of starting the framework, which could cause an exception.
|
*/
if
(
file_exists
(
$maintenance
=
__DIR__
.
'/../storage/framework/maintenance.php'
))
{
require
$maintenance
;
}
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| this application. We just need to utilize it! We'll simply require it
| into the script here so we don't need to manually load our classes.
|
*/
require
__DIR__
.
'/../vendor/autoload.php'
;
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/
$app
=
require_once
__DIR__
.
'/../bootstrap/app.php'
;
$kernel
=
$app
->
make
(
Kernel
::
class
);
$response
=
$kernel
->
handle
(
$request
=
Request
::
capture
()
)
->
send
();
$kernel
->
terminate
(
$request
,
$response
);
...
...
请
注册
或
登录
后发表评论