404 Not Found The requested URL was not found on this server

前端 未结 9 2334
误落风尘
误落风尘 2020-12-25 14:49

I\'m having small troubles and was wondering if someone can help me over the hump. I pulled a copy of a website down from Hostgator and I\'m trying to set it up on my local

9条回答
  •  一整个雨季
    2020-12-25 15:12

    In Ubuntu I did not found httpd.conf, It may not exit longer now. Edit in apache2.conf file working for me.

    cd /etc/apache2
    sudo gedit apache2.conf
    

    Here in apache2.conf change

    
         Options Indexes FollowSymLinks
         AllowOverride None
         Require all granted
    
    

    to

    
            Options Indexes FollowSymLinks
            AllowOverride All
            Require all granted
      
    

提交回复
热议问题