I just want it to take any url with a= in the query string and rewrite it to a new url where a=ref. a is always a positive integer.
jdMorgan
3:09 pm on Sep 16, 2004 (gmt 0)
See RewriteCond %{QUERY_STRING} in the mod_rewrite documentation. A query string is not part of a URL (by definition, it is data attached to a URL, to be passed to the resource at that URL), and so must be handled separately.
Jim
iJeep
3:48 pm on Sep 16, 2004 (gmt 0)
Thank You!
Here is what I needed in case anybody else has the same problem.