8 lines
143 B
PHP
8 lines
143 B
PHP
<?php
|
|
if (file_exists(__DIR__ . '/install.php')) {
|
|
header('Location: install.php');
|
|
} else {
|
|
header('Location: ../index.php');
|
|
}
|
|
exit;
|