Forum Discussion

oke_hallo_31421's avatar
oke_hallo_31421
Icon for Nimbostratus rankNimbostratus
Apr 07, 2017

iRule with Data Groupe

Hello, im searching for a solution, this doesnt work, and i cant find out why. Thanks for help 🙂

when HTTP_REQUEST {

if{[class match [IP::remote_addr] equals /Common/redirect_to_google]}

    HTTP::respond 301 Location "https://www.google.ch[HTTP::uri]"
}

else{

    reject
}

}

1 Reply

  • nathe's avatar
    nathe
    Icon for Cirrocumulus rankCirrocumulus

    oke, looks like you are missing a open curly brace on line 2. this irule now works for me:

    when HTTP_REQUEST {
    if {[class match [IP::remote_addr] equals /Common/redirect_to_google]} {
        HTTP::respond 301 Location "https://www.google.ch[HTTP::uri]"
    }
    else {
        reject
    }
    }
    

    Hope this helps,

    N