How can I get browsers other than IE to accept file urls?
It is not uncommon for our intranet web applications to link to publications, documents, or other resources on our shared network file servers.
In the past, we've had a bit of trouble generating links like:
file://fileserver1/folderofgoodies/rules.pdf
\\fileserver1\folderofgoodies\rules.pdf
The reason we didn't have any problems is because everyone in the building is using IE6 or IE7 (very few have IE8). Both URL styles worked fine in Microsoft browsers.
But if you try to click such links in other browsers, in particular Firefox, nothing happens!
On a new intranet web application I am developing, I am trying to provide cross-browser support, but any links to the local machine or local network resources seem to be ignored, at least in Firefox 3.5.3, although I admit I haven't tested other browsers yet.
Is there a way to change the way the specified files are referenced so that browsers like Firefox will accept them? I cannot do anything that requires scripts, software, extensions or any other solution to be installed on a per user / per computer basis.
I understand that suppressing said links is safe, but these links will only come from trusted local locations within the intranet, so ...
source to share