<?php
header('Content-Type: text/html; charset=utf-8');
if (file_exists(__DIR__ . '/index.html')) {
    include __DIR__ . '/index.html';
} else {
    echo "<h1>站点维护中...</h1>";
}
?>
