Added mod_rewrite for nginx module

This commit is contained in:
alexey
2026-03-23 01:15:59 +03:00
commit 0d2c6277e1
124 changed files with 11079 additions and 0 deletions

15
cms/drupal/index.php Normal file
View File

@@ -0,0 +1,15 @@
<?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;