Hallo,
ja ich weiß, Threadtitel ist der letzte Dreck.
Ich hab da mal ne Frage.
Wie bekomm ich es hin, dass aus
www.Beispieldomain.de/index.php?id=profil
das hier wird:
www.Beispieldomain.de/profil
Jedoch ohne das ich dann nen Ordner 'profil' brauche.
Diesen Code verwende ich derzeit immer:
Und so möcht ich es auch weiterhin handhaben, nur soll die aussage in der Browserzeile anders aussehen...
ja ich weiß, Threadtitel ist der letzte Dreck.
Ich hab da mal ne Frage.
Wie bekomm ich es hin, dass aus
www.Beispieldomain.de/index.php?id=profil
das hier wird:
www.Beispieldomain.de/profil
Jedoch ohne das ich dann nen Ordner 'profil' brauche.
Diesen Code verwende ich derzeit immer:
PHP-Code:
<?php
if($id == "home")
{
include "including/home.php";
}
else if($id == "profil")
{
include "including/profil.php";
}
else if($id == "service")
{
include "including/service.php";
}
else if($id == "portfolio")
{
include "including/portfolio.php";
}
else if($id == "links")
{
include "including/links.php";
}
else if($id == "kontakt")
{
include "including/kontakt.php";
}
else if($id == "imprint")
{
include "including/imprint.php";
}
else
{
include "including/home.php";
}
?>
Kommentar