Why does my phone return HTTP 403 error, even though the same code works in emulator?

54 views Asked by At

I am using WAMP.

httpd.conf is given below:

<Directory />
    AllowOverride none
    Require all denied
    Allow from all
</Directory>

PHPMyadmin alias

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>
1

There are 1 answers

0
shammy narayanan On

Error is resolved

In virtual host i made this change

HostName test.test.de DocumentRoot /var/www/xxx/

<Directory /var/www/xxx>
    Require all granted
</Directory>