<?php
/**
 * 前台入口 — 网站根目录直接访问
 * 用法: index.php?c=控制器&a=方法
 */
require __DIR__ . '/app/Core/App.php';
App::init();

$c = preg_replace('/[^a-zA-Z]/', '', $_GET['c'] ?? 'home');
$a = preg_replace('/[^a-zA-Z]/', '', $_GET['a'] ?? 'index');
App::run($c, $a);
