I have found solution. for PHP Agent regex needs to wrapped in # sings. After i used my regex as below it worked #(?i).*\.(jpeg|jpg|png|gif|jpeg|pdf|txt|js|html|tff|css|svg|png|pdf|dll|yml|yaml|ico|env|gz|bak)$#
... View more
I am inputting my regex in PCRE format and it's still not working. I am trying to exclude all static resources in one Regex.
(?i).*\.(jpeg|jpg|png|gif|jpeg|pdf|txt|js|html|tff|css|svg|png|pdf|dll|yml|yaml|ico|env|gz|bak)$
... View more