Django with mod_wsgi returns 403 error

前端 未结 3 1948
攒了一身酷
攒了一身酷 2021-01-21 06:04

I am trying to use Django with Apache (and mod_wsgi). With the default Django webserver everything was going well, but now I get 403 (access forbidden) error when trying to load

3条回答
  •  清歌不尽
    2021-01-21 07:00

    Try this instead your directories statements:

    
        Order Allow,Deny
        Allow from all
    
    

提交回复
热议问题