Umstellung von HTML auf PHP für die Hauptseiten: Entfernen der HTML-Dateien (index.html, about.html, contact.html, vpc.html, vps.html, mail-gateway.html, webhosting.html) und Implementierung von PHP-Dateien (index.php, about.php, contact.php, vpc.php, vps.php, mail-gateway.php, webhosting.php). Anpassung der .htaccess-Datei zur Unterstützung von HTML zu PHP Weiterleitungen. Aktualisierung der Links in den Header- und Footer-Dateien auf die neuen PHP-Seiten.

This commit is contained in:
Samuel Müller
2025-08-01 15:01:28 +02:00
parent 5088da82e9
commit 65ff0da7a9
18 changed files with 397 additions and 3160 deletions

View File

@@ -17,7 +17,7 @@ includeHeader($page_title, $page_description, $current_page);
<div class="product-hero-content">
<?php
generateBreadcrumbs([
['title' => 'Home', 'url' => 'index.html'],
['title' => 'Home', 'url' => 'index.php'],
['title' => 'Webhosting', 'url' => '']
]);
?>
@@ -104,7 +104,7 @@ includeHeader($page_title, $page_description, $current_page);
<div class="feature">✓ E-Mail-Postfächer</div>
<div class="feature">✓ MySQL Datenbank</div>
</div>
<a href="contact.html?package=webhosting-starter" class="btn btn-primary">Jetzt bestellen</a>
<a href="contact.php?package=webhosting-starter" class="btn btn-primary">Jetzt bestellen</a>
</div>
<!-- Business Package -->
@@ -147,7 +147,7 @@ includeHeader($page_title, $page_description, $current_page);
<div class="feature">✓ MySQL Datenbanken</div>
<div class="feature">✓ Backup-Service</div>
</div>
<a href="contact.html?package=webhosting-business" class="btn btn-primary">Jetzt bestellen</a>
<a href="contact.php?package=webhosting-business" class="btn btn-primary">Jetzt bestellen</a>
</div>
<!-- Professional Package -->
@@ -190,7 +190,7 @@ includeHeader($page_title, $page_description, $current_page);
<div class="feature">✓ Backup-Service</div>
<div class="feature">✓ Priority Support</div>
</div>
<a href="contact.html?package=webhosting-professional" class="btn btn-primary">Jetzt bestellen</a>
<a href="contact.php?package=webhosting-professional" class="btn btn-primary">Jetzt bestellen</a>
</div>
<!-- Enterprise Package -->
@@ -234,7 +234,7 @@ includeHeader($page_title, $page_description, $current_page);
<div class="feature">✓ Priority Support</div>
<div class="feature">✓ Individuelle Konfiguration</div>
</div>
<a href="contact.html?package=webhosting-enterprise" class="btn btn-primary">Jetzt bestellen</a>
<a href="contact.php?package=webhosting-enterprise" class="btn btn-primary">Jetzt bestellen</a>
</div>
</div>
</div>
@@ -335,8 +335,8 @@ includeHeader($page_title, $page_description, $current_page);
<h2>Bereit für Ihr Webhosting?</h2>
<p>Starten Sie noch heute mit professionellem Webhosting</p>
<div class="cta-actions">
<a href="contact.html?product=webhosting" class="btn btn-primary">Jetzt bestellen</a>
<a href="contact.html" class="btn btn-secondary">Beratung anfordern</a>
<a href="contact.php?product=webhosting" class="btn btn-primary">Jetzt bestellen</a>
<a href="contact.php" class="btn btn-secondary">Beratung anfordern</a>
</div>
</div>
</div>