14 lines
286 B
PHP
14 lines
286 B
PHP
<?php
|
|
/**
|
|
* SPA Router - serves index.html for all admin routes
|
|
*/
|
|
|
|
http_response_code(200);
|
|
|
|
$indexPath = __DIR__ . '/index.html';
|
|
if (file_exists($indexPath)) {
|
|
readfile($indexPath);
|
|
} else {
|
|
echo '<!DOCTYPE html><html><body><h1>Application not found</h1></body></html>';
|
|
}
|