I'm trying to open a file on my local disk c: throught a link on my personal web page.
using this:
<a href="http://file:///C:/myfolder/myfile.pdf" target="_blank"> open locally </a>
on the new "_blank" page, the url bar appears like "file///C:/myfolder/myfile.pdf"
, the colon (:) was removed from "file:///". The local file doesn't open just because the colon is missed.
What am I doing wrong? How can i fix it?