Forum Discussion

Albert__Tase_70's avatar
Albert__Tase_70
Icon for Nimbostratus rankNimbostratus
Sep 25, 2006

need help on syntax moving irule 4 to 9

I need help with moveing the below I rule from 4.0 to 9.2.3 code

 

 

rule Ultriva_Redirect {

 

if (server_port == 80) {

 

redirect to "https://%h/%u"

 

}

 

else {

 

discard

 

}

 

}

 

 

 

Thanks

 

 

Al Tase

1 Reply

  • when HTTP_REQUEST {
      if { [TCP::local_port] == 80 } {
        HTTP::redirect https://[HTTP::host][HTTP::uri]
      } else {
        discard
      }
    }

    -Joe