403 Forbidden error with Django and mod_wsgi

前端 未结 5 813
梦谈多话
梦谈多话 2020-12-09 07:52

I created Django project in home directory so it is in home directory.

Setup

Django Verison  : 1.5.1
Python Version  : 2.7.5
mod_wsg         


        
5条回答
  •  失恋的感觉
    2020-12-09 08:56

    Apparently this is an issue that is related to Apache 2.4 and older versions. You need to replace in your apache configuration:

    Allow from all
    

    with

    Require all granted
    

    in the section

提交回复
热议问题