Currently I use font awesome well on the path http: // but it does not work on the url WWW.
The problem is due to the domain config URL WWW?
Currently I use font awesome well on the path http: // but it does not work on the url WWW.
The problem is due to the domain config URL WWW?
When you type in www, your browser may instead be using the HTTPS protocol, and font-awesome will not load because your browser is refusing to GET the font-awesome file through HTTP.
If your link is HTTP only, as in:
Then it may only work when you force it by going to your website through HTTP.
You can try to change it to //...:
This allows both HTTP and HTTPS protocols.