我无法在我的网站上从我的浏览器中打开.doc文件

时间:2010-02-09 18:27:20

标签: php .doc

我无法在我的网站(PHP)上从我的浏览器中打开.doc文件。

而是我的404页面打开了。

这可能是我的htaccess设置吗?

2 个答案:

答案 0 :(得分:1)

您收到404,因为您使用的网址不正确。

确保网址完全正确,文件存在于您期望的位置,并且网络服务器上的权限正确。

答案 1 :(得分:0)

继Jon Winstanley的回答之后:

您可以使用file_exists和is_readable函数来帮助您诊断问题的原因。例如

if (!file_exists('path/to/file/filename')) {
    die("Couldn't find the file, my path is wrong");
}
if (!is_readable('path/to/file/filename')) {
    die("Couldn't read the file, my permissions are wrong");
}