Hello,
I want to block a particular file extension
acl mp3_ext url_regex s-i *.mp3
Where .mp3 is the file extension
Thanks Jean
Hello,
I want to block a particular file extension
acl mp3_ext url_regex s-i *.mp3
Where .mp3 is the file extension
Thanks Jean
Add the following below your line:
acl mp3_ext url_regex -i \.mp3$
http_access deny mp3_ext all