Bonjour à tous,

Je suis novice sur PHP Apache, j'ai retrouvé une erreur sur mon site web ce matin :
[Thu Sep 30 13:50:00 2021] [error] [client 41.251.17.143] [host www.domaine.com] AH01630: client denied by server configuration: /homez.856/domaine/www/.htaccess
Il me semble que c'est dû à un problème de mise à jour serveur.

Voici mon fichier htaccess

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domaine.com$
RewriteRule ^(.*) http://www.domaine.com/$1 [QSA,L,R=301]
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{REQUEST_URI} =""
RewriteRule ^.*$ /public/index.php [NC,L]
RewriteCond %{REQUEST_URI} !^/public/.*$
RewriteRule ^(.*)$ /public/$1
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^.*$ - [NC,L]
RewriteRule ^public/.*$ /public/index.php [NC,L]
# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php56†package as the default “PHP†programming language.
<IfModule mime_module>
  AddType application/x-httpd-ea-php56 .php .php5 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit