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

前端 未结 9 2337
误落风尘
误落风尘 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:14

    If your .htaccess file is ok and the problem persist try to make the AllowOverride directive enabled in your httpd.conf. If the AllowOverride directive is set to None in your Apache httpd.config file, then .htaccess files are completely ignored. Example of enabled AllowOverride directive in httpd.config:

     
        Options FollowSymLinks
        **AllowOverride All**
     
    

    Therefor restart your server.

提交回复
热议问题