Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 

Need help for an iRule to rewrite the URI value and drop the session which is not matching the URI

Thiyagu
Cirrus
Cirrus

Hello All,

I'm in need of help for an iRule to rewrite the URI value and drop the sessions which are not matching the URI value. I have prepared the below the irule and I would like whether the below work as expected

 

Could you please share your ideas

 

when HTTP_REQUEST {

   if {[string tolower [HTTP::uri]] starts_with "/test1"}{

       set newuri [string map -nocase {"/test1" "/test2/abc"} [HTTP::uri]]

       HTTP::uri $newuri

       pool POOL_TEST

               }

           else {

                drop

                }

            }

 

Regards,

Thiyagu

1 REPLY 1

SanjayP
MVP
MVP

should work. Are you having any issue in particular with this?