Redirect 302 "/blog" /
I would expect this rule to take requests from /blog
to /
and /blog/stuff
to /
; instead of /blog/stuff
to //stuff
The behavior of going from /blog/stuff
to //stuff
is what I would expect from an unclosed regex
what is going on? I thought Redirect was supposed to redirect to a different URL, not substitute the match with the target string.
Why doesn't one directive do one thing?