Доброго дня.
Как сделать так, что бы файл ms word открывался на чтение в браузере ?
Вот например код для pdf файла:
$file = 'http://gsu1239m.beget.tech/net_attack.pdf';
$filename = 'net_attack.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
@readfile($file);
Файл нормально открывается на чтение.
Для word формата делаю так:
$file = 'http://gsu1239m.beget.tech/wp-content/uploads/2016/12/polost.doc';
$filename = 'polost.doc';
header('Content-type: application/vnd.ms-word');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
@readfile($file);
но файл упорно отдаётся на скачивание.
как поступить в случае с вордовским фалом ?
UPD: Решено
:
<a target="_blank"
href="http://docs.google.com/viewer?url=http://gsu1239m.beget.tech/wp-content/uploads/2016/12/polost.doc">000000</a>