有没有办法将浏览器重定向到本地网络上的文件?

时间:2011-08-13 17:49:15

标签: php

我想知道是否可以重定向到以下网址:

\\central\public\blah\test.html
PHP中的

?我们希望在网站上放置一个链接,以便员工快速访问出于安全原因必须保留在本地网络上的工具。基本上,只有你在办公室才能使用链接。

我尝试过使用:

header("location: \\central\public\blah\test.html"); 

但它只是将URL格式化为http://

3 个答案:

答案 0 :(得分:3)

尝试足够的正斜杠和file:// protocol:

file://///central/public/blah/test.html

(参考:http://forums.mozillazine.org/viewtopic.php?f=38&t=908015

答案 1 :(得分:2)

尝试:

header("location: file://central/public/blah/test.html");

答案 2 :(得分:0)

我不确定您使用的是哪种浏览器,但如果您使用的是KDE(Konqueror),则可以使用smb://前缀,例如重定向到smb://central/public/blah/test.html