destr0yr_22001
Apr 13, 2012Nimbostratus
rewrite url with /en/foo to /foo
Hi,
I'd like to rewrite a number of urls from:
www.abc.com/foo/meh/
www.abc.com/foo/bar/
www.abc.com/foo/rar/
to:
www.abc.com/meh/
www.abc.com/bar/
www.abc.com/rar/
there is no query component.
when HTTP_REQUEST {
if { [HTTP::uri] starts_with "/foo" } {
}
}
I was going to use HTTP::redirect, however, didnt know if this keeps the meh,bar,rar portion of the uri.