16 lines
424 B
PHP
16 lines
424 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Grav CMS - index.php (Test version)
|
||
|
|
* This file handles routing for non-existing files/directories
|
||
|
|
*/
|
||
|
|
|
||
|
|
// Simulated Grav CMS response
|
||
|
|
echo "<html><head><title>Grav CMS Test Site</title></head><body>";
|
||
|
|
echo "<h1>Grav CMS Content Route</h1>";
|
||
|
|
echo "<p>This page is served by index.php via RewriteRule.</p>";
|
||
|
|
echo "<div class='graviconfig'>Site Configuration Loaded</div>";
|
||
|
|
echo "</body></html>";
|
||
|
|
|
||
|
|
// Exit
|
||
|
|
exit;
|