Nope, I've tried editing my .httaccess file, but still nothing new.
This is my file:
--
# Do not remove this line, otherwise mod_rewrite rules will stop working
RewriteBase /
AddType text/plain .txt
AddType text/html .html .htm
AddType text/css .css
AddType text/xml .scml .xml
AddType text/csv .csv
AddType text/cache-manifest .appcache
AddType image/svg+xml .sgv
AddType image/png .png
AddType image/jpeg .jpeg .jpg .jpe .JPG
AddType audio/ogg .ogg .opus
AddType audio/mp4 .m4a
AddType video/webm .webm
AddType video/ogv .ogv
AddType application/font-woff .woff
AddType application/json .scon .json
AddType application/x-web-app-manifest+json .webapp
AddType application/manifest+json .manifest
AddType application/pdf .pdf
AddType application/zip .zip
AddType application/javascript .js
--
Edit:
The console says the error is Cross-Origin Request Blocked, so I changed my .httaccess in this way:
---
# Do not remove this line, otherwise mod_rewrite rules will stop working
RewriteBase /
<FilesMatch "\.(php)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
AddType text/plain .txt
AddType text/html .html .htm
AddType text/css .css
AddType text/xml .scml .xml
AddType text/csv .csv
AddType text/cache-manifest .appcache
AddType image/svg+xml .sgv
AddType image/png .png
AddType image/jpeg .jpeg .jpg .jpe .JPG
AddType audio/ogg .ogg .opus
AddType audio/mp4 .m4a
AddType video/webm .webm
AddType video/ogv .ogv
AddType application/font-woff .woff
AddType application/json .scon .json
AddType application/x-web-app-manifest+json .webapp
AddType application/manifest+json .manifest
AddType application/pdf .pdf
AddType application/zip .zip
AddType application/javascript .js
--
but still I cannot make it work.
Is there anybody who can teach me on how have I to write a correct .htaccess file?