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