Extended .htaccess for setup and inline PDF

This commit is contained in:
OpenXE 2022-12-16 17:35:34 +00:00
parent 35f6532520
commit 529587c0f5
2 changed files with 20 additions and 0 deletions

View File

@ -1261,6 +1261,16 @@ Allow from all
Order Allow,Deny
Allow from all
</Files>
# Allow access to setup.php
<Files setup.php>
Order Allow,Deny
Allow from all
</Files>
# Allow access to inline PDF viewer
<Files viewer.html>
Order Allow,Deny
Allow from all
</Files>
# end
');

View File

@ -13,4 +13,14 @@ Allow from all
Order Allow,Deny
Allow from all
</Files>
# Allow access to setup.php
<Files setup.php>
Order Allow,Deny
Allow from all
</Files>
# Allow access to inline PDF viewer
<Files viewer.html>
Order Allow,Deny
Allow from all
</Files>
# end