다음 튜토리얼 칼럼인 laravel에서는 Mac 개발 환경인 Laravel Valet에서 Flarum 포럼 시스템을 구성하고 실행하는 방법을 소개하겠습니다. 도움이 필요한 친구들에게 도움이 되길 바랍니다!
Laravel Valet은 PHP 클래스에서 모듈 방식으로 URL 처리를 정의하는 Mac OS용 미니멀리스트 개발 환경입니다. Flarum과 Laravel의 기본 디렉터리 구조가 다르기 때문에 Valet에서 액세스 구성을 정의해야 합니다.
~/.valet/Drivers 디렉터리에 기본 구성 파일인 SampleValetDriver.php가 있으며, 여기에는 presents, isStaticFile 및 frontControllerPath의 세 가지 메소드가 포함되어 있습니다. 이제 자체 구성 파일 FlarumValetDriver.php를 구성하고 다음 세 가지 방법에 따라 자체 드라이버 확장을 작성해야 합니다.
cp SampleValetDriver.php FlarumValetDriver.php
FlarumValetDriver.php를 열고 먼저 서비스 메서드를 다시 작성합니다. 여기서는 해당 웹 루트 디렉터리를 지정해야 합니다. to Valet 해당 Flarum 애플리케이션 디렉토리(여기서는 flarum입니다. 다르면 자신의 Flarum 애플리케이션 디렉토리로 변경해야 합니다)가 있는지 확인합니다. 이는 Nginx에서 루트를 정의하는 것과 다소 유사합니다.
public function serves($sitePath, $siteName, $uri){ return is_dir($sitePath.'/vendor/flarum') && file_exists($sitePath.'/flarum'); }
다음으로 결정합니다. 주어진 URL이 isStaticFile 메소드에 있는지 여부와 정적 파일이 존재하는지 여부는 nginx에서 정적 파일 액세스를 정의하는 방법과 유사합니다.
public function isStaticFile($sitePath, $siteName, $uri){ if ($this->isActualFile($staticFilePath = $sitePath.$uri)) { return $staticFilePath; } return false; }
마지막으로 mod_rewrite와 유사한 frontControllerPath 메소드를 다시 작성합니다. Apache 및 Nginx의 try_uri에서 요청 액세스 경로를 재정의할 수 있습니다.
public function frontControllerPath($sitePath, $siteName, $uri) { if (strpos($uri,'/admin') === 0) { return $sitePath.'/admin.php'; } if (strpos($uri,'/api') === 0) { return $sitePath.'/api.php'; } return $sitePath.'/index.php'; }
최종 결과는 다음과 같습니다. ~/.valet/Drivers에 저장합니다.
<?php class FlarumValetDriver extends ValetDriver { /** * Determine if the driver serves the request. * * @param string $sitePath * @param string $siteName * @param string $uri * * @return bool */ public function serves($sitePath, $siteName, $uri) { return is_dir($sitePath.'/vendor/flarum') && file_exists($sitePath.'/flarum'); } /** * Determine if the incoming request is for a static file. * * @param string $sitePath * @param string $siteName * @param string $uri * * @return string|false */ public function isStaticFile($sitePath, $siteName, $uri) { if ($this->isActualFile($staticFilePath = $sitePath.$uri)) { return $staticFilePath; } return false; } /** * Get the fully resolved path to the application's front controller. * * @param string $sitePath * @param string $siteName * @param string $uri * * @return string */ public function frontControllerPath($sitePath, $siteName, $uri) { if (strpos($uri,'/admin') === 0) { return $sitePath.'/admin.php'; } if (strpos($uri,'/api') === 0) { return $sitePath.'/api.php'; } return $sitePath.'/index.php'; } }
이 방법으로 Falrum의 모든 경로에 액세스할 수 있습니다. 보통. 접속 오류가 보고되는 경우:
Call to undefined method FlarumValetDriver::isActualFile() in /Users/sunqiang/.valet/Drivers/FlarumValetDriver.php on line 29
Valet이 최신 버전으로 업그레이드되지 않았기 때문입니다. Valet을 업그레이드하려면 다음 명령을 실행하세요:
composer global update
원본 주소: https://xueyuanjun.com/post/5679
위 내용은 Mac 개발 환경 Laravel Valet에서 Flarum 포럼 시스템을 구성하고 실행하는 방법에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!