Forum Discussion

cylinh_171509's avatar
cylinh_171509
Icon for Altocumulus rankAltocumulus
Sep 24, 2014
Solved

How can I allow file extention to URL

i would like to know the best way to allow file extention to the URL.   example:   myurl.myurl.com   Allowed URLs:   /rpc/* /OAB/* /ews/* /ecp/* /autodiscover/*  
  • cylinh_171509's avatar
    May 05, 2015

    Just in case someone wants to know what my irule look like that i had to resolve

     

    when HTTP_REQUEST { switch -glob -- [string tolower [HTTP::uri]] { "/rpc/" - "/oab/" - "/ews/*" - "/ecp/" - "/autodiscover/" { pool my_pool } default { reject } } }