Forum Discussion
Mike_Wethington
Nimbostratus
Oct 18, 2010Redirect to new uri with part of original uri
I am trying to redirect a url by using a portion of old a new.
original request
http://www.mysite.com/udpate/blahblah
redirected to http://www.mysite.com/p...
hoolio
Cirrostratus
Oct 18, 2010Hii Mike,
You can use 'string range' to parse the original URI. I've added URI encoding of the URI to ensure there aren't any encoding errors in the redirect. If that's not what you want, you can remove that portion.
TCL string range man page
http://www.tcl.tk/man/tcl8.4/TclCmd/string.htmM40
when HTTP_REQUEST {
Check if URI starts with /update
if {[string tolower [HTTP::uri]] starts_with "/update"}{
Redirect the request
HTTP::redirect "http://www.mysite.com/profile/beta/page.aspx?id=[URI::encode [string range [HTTP::uri] 7 end]]"
log local0. "[IP::client_addr]:[TCP::client_port]: Redirecting [HTTP::uri]\
to http://www.mysite.com/profile/beta/page.aspx?id=[URI::encode [string range [HTTP::uri] 7 end]]"
}
}
Aaron
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects
