I have a base site with all my code javascript and dependencies to jquery and bootstrap, so I don't need each time to copy all this files to a new site. For example, my base site is on localhost/basesite, so new sites uses bootstrap like that:
<link href="http://localhost/basesite/content/bootstrap/css/boostrap.css rel='stylesheet' />
and for scripts:
<script src='http://localhost/basesite/scripts/bootstrap.js'></script>
Evereything works fine, but bootstrap glyphicons doesn't, 'cause 3 files in fonts directory are not correctly loaded:
../fonts/glyphicons-halflings-regular.[woff, ttf, svg]
These files are in fonts directory of bootstrap, and the browser can get correctly just the file glyphicons-halflings-regular.eof, witch is in the same directory.
If I open my base site, glyphicon works like a charm, so there is no problem with fonts directory location.
I think this is a problem of cross domain, but my site is already configured to use that.
In Chrome, I got 304 and 206. I really can't understand that. Here a printscreen from Google Chrome:
Best Regards