Tuesday, August 16, 2022

membuat virtual host pada xampp

 buka apache http.conf 

Listen 8080

buka apache httpd-vhost.conf 

<VirtualHost *:8080>

    DocumentRoot "D:/htdocs_extend"

    ServerName localhost:8080

    <Directory "D:/htdocs_extend">

        Options All

AllowOverride All

Require all granted  

    </Directory>

</VirtualHost>