0
我想讓Apache提供.htaccess文件來修復firefox的Access-Control-Allow-Origin。 我使用mod_wsgi的和我的httpd.conf看起來是這樣的:apache2 django mod_wsgi htaccess
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
我有什麼做的就是阿帕奇尋找.htaccess文件在/ home/Ubuntu的/我,Django的應用程序嗎?
<FilesMatch "\.(ttf|otf|eot)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
介意分享如何? – user2161049 2013-03-21 11:29:06
得到它的工作:請參閱編輯 – user2161049 2013-03-21 12:02:59