@mallory_cormier
To allow PDF files in .htaccess, you need to add a rule that allows access to files with a .pdf extension. Here is how you can do it:
1 2 3 |
<FilesMatch ".(pdf)$"> Allow from all </FilesMatch> |
This rule specifies that all files with a .pdf extension should be allowed access to everyone. If you want to restrict access to certain users or deny access to specific IP addresses, you can modify the rule accordingly.
After adding this rule to your .htaccess file, PDF files should now be accessible to users on your website.