Forum Discussion
Chuchuchui_1605
Nimbostratus
Jun 19, 2010HTTP_REQUEST redirect newbie
I am trying to figure out how to do this redirect with an HTTP_REQUEST and I am confused. I am trying take this https://www.xxx.yyy.com/v1234/login.aspx?id=9999999-99 and redirect it to https://www.xxx.yyy.com/default.aspx?id=9999999-99. I want to take the parameter after the = and put that part into a new url.
- hoolio
Cirrostratus
Can you try something this:when HTTP_REQUEST { Check if some case is true if {[HTTP::uri] starts_with "/v1234"}{ Remove /v1234 from the URI and redirect the client HTTP::redirect "https://[HTTP::host][string map {/v1234 ""} [HTTP::uri]]" } }
- The_Bhattman
Nimbostratus
or you can do the followingwhen HTTP_REQUEST { Checks to see if the http request starts with a specific URI if {[HTTP::uri] starts_with "/v1234"}{ Takes the information after ID= and uses that in the redirect HTTP::redirect "https://[HTTP::host]/default.aspx?id=[substr [HTTP::query] 3 0]" } }
- Michael_Yates
Nimbostratus
I think it would be a little bit easier to read and maintain by removing the need for the substr.when HTTP_REQUEST { if {[HTTP::uri] starts_with "/v1234" } { HTTP::redirect is a 302 Temporary Redirect HTTP::redirect "https://[HTTP::host]/default.aspx?[HTTP::query]" } }
when HTTP_REQUEST { if {[HTTP::uri] starts_with "/v1234" } { HTTP::redirect is a 302 Temporary Redirect HTTP::respond 301 Location "https://[HTTP::host]/default.aspx?[HTTP::query]" } }
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