I have to put a local server location's link on a wordpress blog page.
The location is of the nature //192.168.20.68/localfolder/
I've tried putting file:///localhost/192.168.20.68/localfolder
<a href="file://192.168.20.68/localfolder" target="_blank">Local Folder</a>
or
<a href="file://192.168.20.68/localfolder" onclick="window.open(this.href); return false;" onkeypress="window.open(this.href); return false;">This link will open in new window/tab</a>
It opens a new tab, but doesn't open any link. Its just blank. Can someone kindly help?