apache2 django mod_wsgi htaccess

时间:2013-03-21 09:53:35

标签: django apache apache2

我想让Apache服务.htaccess文件来修复firefox Access-Control-Allow-Origin。 我正在使用mod_wsgi,我的httpd.conf看起来像这样:

Alias /static/ /home/ubuntu/my-django-app/static/

<Directory /home/ubuntu/my-django-app/static>
Order deny, allow
Allow from all
</Directory>

WSGIScriptAlias / /home/ubuntu/my-django-app/apache/django.wsgi

我需要做些什么才能让Apache在/ home / ubuntu / my-django-app中查找.htaccess文件?

<FilesMatch "\.(ttf|otf|eot)$">
  <IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin "*"
  </IfModule>
</FilesMatch>

1 个答案:

答案 0 :(得分:0)

如果您有权访问httpd.conf,则可以在那里处理Access-Control-Allow-Origin的配置需求。