i've got this sample rule:
RewriteRule ^stories\/([0-9]+)\/(.*)+ stories/index.cfm?id=$1
and this works perfect.
now, i would redirect one page (just rewrited) to another:
Redirect 301 /stories/2000/title-of-stories http://host/stories/2001/another-stories
but apache redirect to
http://host/stories/2001/another-stories?id=2000
appending to url the query string "?id=2000"
how can i remove it?
many thanks!