This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

UTM Reg Ex - Exceptions

Hi Everyone,

I am using Reg Ex for our UTM
UTM  > Web Protection > Filtering Options > Exeptions


I would like to allow the following site
https://s3.amazonaws.com/export.easybib.com/
Which the actual URL is = https://s3.amazonaws.com/export.easybib.com/easybib_556674668bc5d9.24488386.docx



I have tried a miss mash of things, i.e.:

•^https?://.s3.amazonaws.com/export*/.*\.docx



Any ideas why the above will not work?

Does anyone have a working syntax for the above two URLs?


This thread was automatically locked due to age.
Parents
  • Try
    https?://s3.amazonaws.com/export.*/.*\.docx

    You don't need a . (any character) before s3 and you do need one between export and * (otherwise you are saying "zero or more of t").

    I recommend googling "utm quick regex" and grabbing that tool.
Reply
  • Try
    https?://s3.amazonaws.com/export.*/.*\.docx

    You don't need a . (any character) before s3 and you do need one between export and * (otherwise you are saying "zero or more of t").

    I recommend googling "utm quick regex" and grabbing that tool.
Children
No Data