我想让 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>