Subdomain Problem
lima-city → Forum → Programmiersprachen → PHP, MySQL & .htaccess
-
Hallo,
ich habe ein Script gemacht was Subdomains anlegen soll aber es klappt nicht warum???
<?php $subdomains = array( 'tools.localhost' => 'http://localhost/neuetools', 'forum.localhost' => 'http://localhost/forum.php' ); foreach($subdomains as $host => $redject) { if(strtolower($_SERVER['HTTP_HOST']) == strtolower($host)) { header('Location: '.$redject); exit; } } ?>
-
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage
-
Mir ist nicht bekannt das PHP direkt auf dem Webserver Subdomains einrichten kann.
-
Warum nicht einfach so:
<?php
$sub = getenv("SERVER_NAME");
if($sub == "tools.localhost")
{
echo "<meta http-equiv=\"refresh\" content=\"0 url=http://localhost/neuetools\">";
die();
}
if($sub == "forum.localhost")
{
echo "<meta http-equiv=\"refresh\" content=\"0 url=http://localhost/forum.phps\">";
die();
}
?>
Dass dann in der Index includieren
Ist doch sauberer und kleiner, oder? -
?hmm, das funktioniert auch nicht auf Lima
Kai008 das funzt nit -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage