Muppy wrote:
> I whould use this rewrite rule
>
> RewriteRule categoria_([^/]+).htm categoria.htm?id=$1 [L]
> RewriteRule sottocategoria_([^/]+).htm sottocategoria.htm?id=$1 [L]
>
> but when i call sottocategoria_?? it is parsed as categoria_??
> how can i solve?
> thanks
> Andrea
>
>
Try using:
RewriteRule sottocategoria_([^/]+).htm sottocategoria.htm?id=$1 [L]
RewriteRule categoria_([^/]+).htm categoria.htm?id=$1 [L]
or this:
RewriteRule ^categoria_([^/]+).htm categoria.htm?id=$1 [L]
RewriteRule ^sottocategoria_([^/]+).htm sottocategoria.htm?id=$1 [L]
--
Justin Koivisto - spam.TakeThisOut@koivi.com
PHP POSTERS: Please use comp.lang.php for PHP related questions,
alt.php* groups are not recommended.<!-- ~MESSAGE_AFTER~ -->
>> Stay informed about: mod rewrite problem