A client wants me to block access to a page unless the http_user_agent = xxx.
Is there a way to do this? I was thinking of an if else or if not
if else
if not
Use the !~* operator which is the negated version of ~*.
!~*
~*
See this document for details.