theXfactor82_91
Jun 16, 2015Nimbostratus
irule redirect question
We are moving a PeopleFinder feature over to a new Server so I am wanting to know if an irule could take care of the following...
request is http://site.com/path/peoplefinder_advanced.pl?searchStr=username&searchAttr=uid
redirect to http://newsite.com/peoplefinder.aspx?searchStr=username&searchAttr=uid
If someone could direct me to a solution that would be great. Thanks
Please try this.
when HTTP_REQUEST { if { [HTTP::uri] start_with "/path/path/peoplefinder_advanced.pl" } { HTTP::redirect "http://newsite.com/peoplefinder.aspx?[URI::query [HTTP::uri]]" } }