LocationMatch Regex
Hi,
. In Virtual Host we have added below line. so when we hit like /content/dam/site/abc.pdf . It matches and set Header as below.
<LocationMatch "\.(?i:pdf)$">
ForceType application/pdf
Header set Content-Disposition inline
</LocationMatch>
Requirement:
If URL is having a selector lets say "pdfdownload" , then it does not set above Header.
Could someone help with regex for that.
so when we hit something like /content/dam/site/abc.pdf.pdfdownload.pdf, It does not set any Content-Disposition Header.
Thanks in advance.

