1. 리다이렉트
만약 URL이 estrella13.com으로 접근했을 때, 라우팅 설정에서 estrella13.com/main으로 자동으로 변경하여 접속해주는 것을 말합니다.
2. 코드
# routes/web.php
<?php
use App\Http\Controllers\MainController;
Route::get('/', function() {
return redirect('/main');
});
Route::get('/main', [MainController::class, 'main']);
?>
- 문의와 피드백은 언제나 환영입니다 ( •̀ .̫ •́ )✧ -
'웹 Back-End > PHP' 카테고리의 다른 글
[XAMPP][PHP] PHP 내장 웹서버 실행 (0) | 2023.08.15 |
---|---|
[PHP] 배열 필터링 함수 - array_filter() (0) | 2023.08.14 |
[PHP Laravel] 라우팅 오류: 404 Not Found - The requested URL was not found on this server. (0) | 2023.05.09 |
[Laravel] Database connection [] not configured. - 데이터베이스 마이그레이션 오류 (0) | 2023.05.03 |
[Linux][Laravel] php artisan migrate 실행 시 "SQLSTATE[HY000] [2002] Connection timed out" 오류 (0) | 2023.04.23 |