laravel 앞 배경 경로 분리 방법
실현 절차:
1.우선 app/Https/controlles/파일 에 Frontend(전단)Backend(백 엔 드)API(인터페이스)파일 을 만 듭 니 다.
2.app/Https/에 대응 하 는 경로 파일 만 들 기
3.app/providers/RouteServiceProvider.php 를 열 어 각 기능 에 대응 하 는 경로 파일 을 정의 합 니 다.
코드 는 다음 과 같 습 니 다:
<?php
namespace App\Providers;
use Illuminate\Routing\Router;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
class RouteServiceProvider extends ServiceProvider
{
/**
* This namespace is applied to the controller routes in your routes file.
*
* In addition, it is set as the URL generator's root namespace.
*
* @var string
*/
protected $namespace = 'App\Http\Controllers';
protected $backendNamespace;
protected $frontendNamespace;
protected $apiNamespace;
protected $currentDomain;
/**
* Define your route model bindings, pattern filters, etc.
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
public function boot(Router $router)
{
//
$this->backendNamespace = 'App\Http\Controllers\Backend';
$this->frontendNamespace = 'App\Http\Controllers\Frontend';
$this->apiNamespace = 'App\Http\Controllers\API';
// $this->currentDomain = $this->app->request->server->get('HTTP_HOST');
$this->currentDomain = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : "";
parent::boot($router);
}
/**
* Define the routes for the application.
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
public function map(Router $router)
{
// $router->group(['namespace' => $this->namespace], function ($router) {
// require app_path('Http/routes.php');
// });
$backendUrl = config('route.backend_url');
$frontendUrl = config('route.frontend_url');
$apiUrl = config('route.api_url');
switch ($this->currentDomain) {
case $apiUrl:
// API
$router->group([
'domain' => $apiUrl,
'namespace' => $this->apiNamespace],
function ($router) {
require app_path('Http/routes-api.php');
}
);
break;
case $backendUrl:
//
$router->group([
'domain' => $backendUrl,
'namespace' => $this->backendNamespace],
function ($router) {
require app_path('Http/routes-backend.php');
}
);
break;
default:
//
$router->group([
'domain' => $frontendUrl,
'namespace' => $this->frontendNamespace],
function ($router) {
require app_path('Http/routes-frontend.php');
}
);
break;
}
}
}
이 때 는 서로 다른 컨트롤 러 에 경로 만 만 만 들 면 Ok 입 니 다.이상 의 이 laravel 이 전 백 스테이지 로 를 분리 하 는 방법 은 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.여러분 에 게 참고 가 되 고 여러분 들 이 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Laravel - 변환된 유효성 검사 규칙으로 API 요청 제공동적 콘텐츠를 위해 API를 통해 Laravel CMS에 연결하는 모바일 앱(또는 웹사이트) 구축을 고려하십시오. 이제 앱은 CMS에서 번역된 콘텐츠를 받을 것으로 예상되는 다국어 앱이 될 수 있습니다. 일반적으로 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.