I have web server and I need to link some html files (some flash files that are opening like html) that are on one network drive. It is not possible to put the files on a webserver because there are 700Gb of files to upload.
All possible variants of
href="10.10.10.3/path/file.html"
href="http://10.10.10.3/path/file.html"
href="file:///10.10.10.3/path/file.html"
have been attempted, but for example if I put the address
href="file://///10.10.10.33/path/file.html"
I get the page.
But with href it does not open. I understand that browsers security policy, but is there any way to connect html pages with with another html pages on another disk (not web server). One of solution is maybe to install web server on that other machine and put these html files on webserver and they try to catch them, but for static files i don't need web server.
Acceptable solution for us was to install web server on storage network drive and fetch data from there. Security does not allow to fetch data from paths like: c://.. for example