From d7f5ed3e65305da6cecd19c9862693446a6c9543 Mon Sep 17 00:00:00 2001 From: Maxime Rainville Date: Wed, 25 Sep 2019 16:59:48 +1200 Subject: [PATCH] DOC Substituce old apache syntax for Require --- docs/en/02_Developer_Guides/09_Security/04_Secure_Coding.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/en/02_Developer_Guides/09_Security/04_Secure_Coding.md b/docs/en/02_Developer_Guides/09_Security/04_Secure_Coding.md index bbc981ab0..34155e7d6 100644 --- a/docs/en/02_Developer_Guides/09_Security/04_Secure_Coding.md +++ b/docs/en/02_Developer_Guides/09_Security/04_Secure_Coding.md @@ -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: ``` - - Order allow,deny - Allow from all + + Require all granted ```