hey, mod_rewrite = easy.. but what i want to do = hard for me :S I want a (modded url) like this: http://example.com/search/bob+marley.html with line like: RewriteRule ^search/(.*).html?$ search.php?search=$1 HOWEVER this is the part I cannot do: http://example.com/search/bob+marley.html?thing=crap I cant think of what to do to make it work.. RewriteRule ^search/(.*).html(.*)?$ search.php?search=$1&$2 dont work because of the '?' in ?thing=crap any ideas?
is there like a &modded=?thing=crap then php script can make the $_GET[modded] and split it into new GETs so i get $_GET[thing] ??