Refactor URL handling and improve navigation: Updated .htaccess for cleaner URL structure by removing .php extensions and redirecting to clean URLs. Modified various pages to use absolute paths for links, enhancing consistency and user experience. Updated error pages and footer links accordingly.

This commit is contained in:
TheOnlyMace
2026-01-13 23:15:10 +01:00
parent 4382fd3e0b
commit ebb15eb5c2
13 changed files with 53 additions and 46 deletions

View File

@@ -21,8 +21,8 @@ includeHeader($page_title, $page_description, $current_page);
<h1>Seite nicht gefunden</h1>
<p>Die angeforderte Seite existiert leider nicht oder wurde verschoben.</p>
<div class="error-actions">
<a href="index.php" class="btn btn-primary">Zur Startseite</a>
<a href="contact.php" class="btn btn-secondary">Kontakt aufnehmen</a>
<a href="/" class="btn btn-primary">Zur Startseite</a>
<a href="/contact" class="btn btn-secondary">Kontakt aufnehmen</a>
</div>
</div>
</div>