Mod_Rewrite
Mod_rewrite je dostupný u všech nabídek webhostingu.
Na této stránce naleznete manuál pro použití:
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ému.
Mod_ort mění URL stránky. Chcete-li použít mod_rewrite, může dojít k problému. Řešeníme je přepis mod_rewrite.
Z tohoto:
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]
na 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]