Mam problemy z przekierowaniem z http://localhost/index.php na podstronę http://localhost/index.php?id=main .
Używałem wielu kombinacji:
.htaccess
Kod
Redirect permanent http://localhost/index.php http://localhost/index.php?id=main
meta
Kod
<META HTTP-EQUIV=Refresh CONTENT=?0; URL=http://localhost/index.php?id=main?>
działa lecz mam nieskończoną pętle odświeżania strony.
php
Kod
<?
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://localhost/index.php?id=main");
header("Connection: close");
?>
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://localhost/index.php?id=main");
header("Connection: close");
?>
Kurcze już mnie się pomysły kończą i odwiedzane strony.
Proszę o jakieś nakierowanie lub podpowiedz.
Z góry dziękuje