Hi,
I want to test the effects of my RewriteRule
s without going through all the trouble of setting up a vhost and a RewriteLog
and throwing URLs at the browser (or curl
ing them).
But I don't just wanna test regular expressions. I want my URLs to actually go through Apache's mod_rewrite stack, and I want to see the response that would come out of it.
Awesome if I could get some trace of which rules acted on the URL, with which order, and what the interim results were. (I guess most of this appears in the rewrite log, but I wanted to avoid that setup)
Is there any tool for this out there?
I'm ok with it not being able to handle RewriteConds, since those generally rely on the request headers and whatnot.