Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
ce64714b
Commit
ce64714b
authored
Oct 26, 2013
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweak front controller. Htaccess.
parent
29fc9f69
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
47 deletions
+6
-47
public/.htaccess
+4
-0
public/index.php
+2
-47
No files found.
public/.htaccess
View file @
ce64714b
...
@@ -2,6 +2,10 @@
...
@@ -2,6 +2,10 @@
Options
-MultiViews
Options
-MultiViews
RewriteEngine
On
RewriteEngine
On
# Redirect Trailing Slashes...
RewriteRule
^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond
%{REQUEST_FILENAME} !-d
RewriteCond
%{REQUEST_FILENAME} !-d
RewriteCond
%{REQUEST_FILENAME} !-f
RewriteCond
%{REQUEST_FILENAME} !-f
RewriteRule
^ index.php [L]
RewriteRule
^ index.php [L]
...
...
public/index.php
View file @
ce64714b
...
@@ -36,21 +36,6 @@ $app = require_once __DIR__.'/../bootstrap/start.php';
...
@@ -36,21 +36,6 @@ $app = require_once __DIR__.'/../bootstrap/start.php';
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| Capture The Request
|--------------------------------------------------------------------------
|
| Next we will capture the HTTP request into an instance of the Symfony
| request class. We will then pass that to a Laravel application for
| processing and return the response we receive back from the app.
|
*/
use
Symfony\Component\HttpFoundation\Request
;
$request
=
Request
::
createFromGlobals
();
/*
|--------------------------------------------------------------------------
| Run The Application
| Run The Application
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
|
|
...
@@ -61,35 +46,6 @@ $request = Request::createFromGlobals();
...
@@ -61,35 +46,6 @@ $request = Request::createFromGlobals();
|
|
*/
*/
$response
=
with
(
new
Stack\Builder
)
use
Symfony\Component\HttpFoundation\Request
;
->
push
(
'Illuminate\Foundation\TrailingSlashRedirector'
)
->
resolve
(
$app
)
->
handle
(
$request
);
/*
|--------------------------------------------------------------------------
| Close The Application & Send Response
|--------------------------------------------------------------------------
|
| When closing the application, the session cookies will be set on the
| request. Also, this is an opportunity to finish up any other work
| that needs to be done before sending this response to browsers.
|
*/
$app
->
callCloseCallbacks
(
$request
,
$response
);
$response
->
send
();
/*
|--------------------------------------------------------------------------
| Shutdown The Application
|--------------------------------------------------------------------------
|
| Once the app has finished running we'll fire off the shutdown events
| so that any end work may be done by an application before we shut
| off the process. This is the final thing to happen to requests.
|
*/
$app
->
terminate
(
$request
,
$response
);
$app
->
run
(
Request
::
createFromGlobals
());
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment