Hi guys!
I created this rewrite rule:
Code:
RewriteRule ^corsi/([a-z\-]*)[^\.a-z] search.php?tag=$1 [L]
It should filter URL:
the one with extension (.php, .htm, .asp and so on) is not rewritten, all the others (ie. corsi/new-class-for-kids) are rewritten to search.php?tag=xxxxxx
It works, but it returns me only a part of the querystring:
the link corsi/new-class-for-kids is rewritten in search.php?tag=new-class-for (note that a part of querystring is missing).
Can anyone help me?
|