Blank Page (v2021)

Listing my errors.The Apache service named reported the following error:

>>> Argument for 'Require all' must be 'granted' or 'denied'     .

-----------------------------------------------------------------(error)
<Directory />
    AllowOverride all
    Require all
</Directory>
----------------------------------------------------------------- (should be)
<Directory />
    AllowOverride all
    Require all granted
</Directory>
----------------------------------------------------------------------(with this the job is done)
RewriteEngine On
RewriteBase /pruebaphpmaker/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ /pruebaphpmaker/index.php [QSA,L]

------------------------------------------------------------------- (My advise to others…)
There are a lot of configuration files to modify. Take your time.
Enable all the possible sources to catch errors. (i find mine at system logs)https://phpmaker.dev/download.php#url-rewrite
https://httpd.apache.org/docs/current/mod/mod_rewrite.html
https://discourse.hkvstore.com/t/migrating-to-v2022/655/1 this and all the advise (enabling debuging, logs, etc) like post says.Thanks for your time. I learn a lot. I’m gratefull.