Xampp - Ubuntu - cant access my project in lampp/htdocs

后端 未结 5 1824

I have installed xampp to Ubuntu 12.04. I have put my project in the folder /opt/lampp/htdocs/project_is_here

When I type in the browser localhost/soap/php

5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-30 18:53

    One possible reason is that you are using Virtual host.

    In that case, use this command in your terminal

    sudo nano /opt/lampp/etc/extra/httpd-vhosts.conf
    

    Then add this block of code at the end of the file

    
        DocumentRoot "/opt/lampp/htdocs"
        ServerName localhost
        ServerAlias localhost
        ErrorLog "logs/localhost-error_log"
        CustomLog "logs/localhost-access_log" common
    
    

    Finally restart XAMPP

    sudo /opt/lampp/lampp restart
    

提交回复
热议问题