DOC Substituce old apache syntax for Require

This commit is contained in:
Maxime Rainville 2019-09-25 16:59:48 +12:00
parent d95fe203b8
commit d7f5ed3e65

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>
``` ```