I need to rewrite:
index.php?node=[something]
to
/node/[something]
(the "node" part will be static text and it's not important)
i've tried:
RewriteRule ^index\.php?node=(.*)$ /node/$1 [L,R=301]
(again the rewritten "node" part will be static text and it's not important)
and a lot of other variations without success...
Thanks!