10 lines
318 B
PHP
10 lines
318 B
PHP
<?php
|
|
/**
|
|
* TTMQMS Enterprise - Root Front Controller (XAMPP / MAMP Fallback)
|
|
*
|
|
* This file allows running the application directly from the htdocs root folder (e.g. /ttm)
|
|
* without requiring custom Apache Virtual Hosts, DocumentRoot modifications, or mod_rewrite.
|
|
*/
|
|
|
|
require_once __DIR__ . '/public/index.php';
|