cache

greeting all
i need this small thing
i want to cache all sites but sites which got in url " ? " don’t want to cache it
i am using Mikrotik 3.x
i type in : ip web-proxy cache
dst-host= / ? action deny even i try ? and \ ?
didn’t work :frowning:
any help with this issue
thanks

I don’t think that they will be cached anyway. The access list supports regular expressions, but you will need to learn how to use them. to match a question mark, you need to write ?

to tell access list that your rule is a Regex, start the rule with a colon:

Ie. this will match a single question mark:

:\?

http://www.regular-expressions.info/

hey dude thanks it work finally :smiley:
one more thing to cache .exe
add path= *.exe action=accept right?
Thanks for your help.