Vyhledávání


vytiskni pdf
Mod_Rewrite
Mod_rewrite je dostupný u všech nabídek řady Plan. Pro více informací: http://httpd.apache.org/docs/2.0/misc/rewriteguide.html

Mod_rewrite a Mod_ORT
ORT (technologie přesměrování) je modul vyvynutý společností OVH, který umožňuje hosting mnoha důležitých stránek při využití méně RAM systémem.

Mod_ort mění URI stránky a může dojít k problému, chcete-li používat mod_rewrite. Řešeníme je přepis mod_rewrite.
Toto:
RewriteRule ^/grp([0-9]+).php$ group.php?id=$1 [L]
RewriteRule ^/art([0-9]+).php$ article.php?id=$1 [L]
RewriteRule ^/age([0-9]+).php$ agenda.php?id=$1 [L]
RewriteRule ^/member_([0-9]+).php$ member.php?id=$1 [L]

musí být změněno na:
RewriteRule ^/grp([0-9]+).php$ /group.php?id=$1 [L]
RewriteRule ^/art([0-9]+).php$ /article.php?id=$1 [L]
RewriteRule ^/age([0-9]+).php$ /agenda.php?id=$1 [L]
RewriteRule ^/member_([0-9]+).php$ /member.php?id=$1 [L]