Я использую WAMP.
httpd.conf приведен ниже:
<Directory />
AllowOverride none
Require all denied
Allow from all
</Directory>
PHPMyadmin псевдоним
alias /phpmyadmin "c:/wamp64/apps/phpmyadmin4.6.4/"
<Directory "c:/wamp64/apps/phpmyadmin4.6.4/">
Options Indexes FollowSymLinks MultiViews
AllowOverride none
Require all granted
<ifDefine APACHE24>
Require all granted
</ifDefine>
<ifDefine !APACHE24>
Order Deny,Allow
Deny from all
Allow from all
</ifDefine>
Ошибка устранена
В виртуальном хосте я сделал это изменение
HostName test.test.de
DocumentRoot / var / www / xxx /
<Directory /var/www/xxx>
Require all granted
</Directory>
Других решений пока нет …