slurpderp Wrote:
-------------------------------------------------------
> I want http://domain/?subtopic=herp&derp=this to
> rewrite to http://domain/herp/derp/this
>
if ($args ~ subtopic=(?<subtopic>[^&]+)&derp=(?<derp>[^&]*)) {
rewrite ^ /$subtopic/derp/$derp? last;
}
Put the above into your server {} configuration (do not put it into location {} block)
Haven't tested this one, but it should work ok.
Andrejs
Edited 2 time(s). Last edit at 11/03/2011 11:37PM by locojohn.