Apache "LocationMatch ... /LocationMatch"

How can we match 2 or more directories in Apache without defining multiple configuration as below?

"Location /audio"

Order Allow,Deny
deny from 115.48.0.0/16
Allow from All
"/Location"

"Location /video"
Order Allow,Deny
deny from 115.48.0.0/16
Allow from All
"/Location"

You can easily define as 

"LocationMatch "/(audio|video)""
Order Allow,Deny
deny from 115.48.0.0/16
Allow from All
"/LocationMatch"

Same format applies to "DirectoryMatch ... /DirectoryMatch"

No comments: