Zde jsou starší komentáře k článku o přesměrovávání a podstrkávání. I tyto komentáře Vám pomocí příkladů mohou leccos objasnit.
<?php
$article = $_GET['sekce'];
$dir = "./sekce/";
if ($article) {
if (file_exists($dir.$article. ".php"));
include($dir.$article.".php");
} else {
include($dir. "hlavni-strana.php");
}
?>
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_URI} ^(.*)
RewriteRule ^stranky/(.*) index.php?str=$1 [nc,L,QSA]
http.../index.php?str=uvod › http.../uvod
RewriteCond %{REQUEST_URI} ^stranky/(.*)
RewriteRule ^stranky/(.*) index.php?str=$1 [nc,L,QSA]
[1] ondra (tanecnishow.kvalitne.cz/test) dne 04.07.2008:
Co delam spatne v souboru .htaccess kde mam:Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_URI} ^(.*).htm
RewriteRule ^(.*).htm index.php?url=$1 [nc,L,QSA]
adresa stranek je napriklad:
http://tanecnishow.kvalitne.cz/test/index.php?url=aktualne
a ja z toho chci dostat:
http://tanecnishow.kvalitne.cz/test/aktualne
jak toho docilim?