Server unable to read htaccess file, denying access to be safe

前端 未结 14 2892
情深已故
情深已故 2020-12-12 20:15

I have created a simple app using AngularJS. When I tried to host that project in my website http://demo.gaurabdahal.com/recipefinder it shows the following error:

14条回答
  •  孤街浪徒
    2020-12-12 20:58

    In linux,

    find project_directory_name_here -type d -exec chmod 755 {} \;
    find project_directory_name_here -type f -exec chmod 644 {} \;
    

    It will replace all files and folder permission of project_directory_name_here and its inside stuff.

提交回复
热议问题