Merge pull request #9266 from open-sausages/pulls/4/update-usage-doc-with-rquire

DOC Substituce old apache syntax for Require
This commit is contained in:
Loz Calver 2019-09-25 10:42:00 +01:00 committed by GitHub
commit 2f35cbd88c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -506,9 +506,8 @@ you can bypass the rules for a specific directory.
Here's an example for a `.htaccess` file used by the Apache web server: Here's an example for a `.htaccess` file used by the Apache web server:
``` ```
<Files *.yml> <Files ~ "\.ya?ml$">
Order allow,deny Require all granted
Allow from all
</Files> </Files>
``` ```