Ubuntu 22.04 Rewrite On

Good morning,

I have a problem with a clean installation of cake php under ubuntu 22.04 with apache 2.

Indeed my link looks like monsite/index.php/moncontroleur

Mod rewrite is enabled.

<VirtualHost *:80>
ServerName btlecouest.demeter.ovh
DocumentRoot "/var/www/html/Btlecouest/app/webroot"

<Directory />
    Options FollowSymLinks
    AllowOverride All
#    Order deny,allow
#    Deny from all
</Directory>

my default.

<VirtualHost *:80>
        # The ServerName directive sets the request scheme, hostname and port that
        # the server uses to identify itself. This is used when creating
        # redirection URLs. In the context of virtual hosts, the ServerName
        # specifies what hostname must appear in the request's Host: header to
        # match this virtual host. For the default virtual host (this file) this
        # value is not decisive as it is used as a last resort host regardless.
        # However, you must set it for any further virtual host explicitly.
        #ServerName www.example.com

        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html

<Directory />
    Options FollowSymLinks
    AllowOverride All
</Directory>
<Directory /var/www/html>
    Options FollowSymLinks
    AllowOverride All
    Order Allow,Deny
    Allow from all
</Directory>

demeter@ZOE:~/www$ sudo a2enmod rewrite
Module rewrite already enabled
demeter@ZOE:~/www$


http://btlecouest.demeter.ovh/dqsdqsd → error
http://btlecouest.demeter.ovh/index.php/dqsdqsd → ok

thanks for you help