- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
12 lines
260 B
PHP
12 lines
260 B
PHP
<?php
|
|
if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
|
|
$uri = 'https://';
|
|
} else {
|
|
$uri = 'http://';
|
|
}
|
|
$uri .= $_SERVER['HTTP_HOST'];
|
|
header('Location: '.$uri.'/dashboard/');
|
|
exit;
|
|
?>
|
|
Something is wrong with the XAMPP installation :-(
|