Ben web sitemde tarayıcı. Doc dosyalarını açık edemem (php)
Doğrusu benim 404 sayfa açılır
benim htaccess setings olabilir?
Jon WINSTANLEY cevabı den sonra:
Eğer sorunun nedenini teşhis yardımcı file_exists ve is_readable işlevlerini kullanabilirsiniz. örn.
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");
}