Jump to content
  • 0

Создание ссылки на скачивание текстового файла


maxander
 Share

Question

У меня такая проблема есть текстовый файл (file.txt) делаю ссылку на файл <a href="file.txt">Сылка</a>. После нажатия на ссылку должно открыться окно скачивания файла а у меня файл в html странице открывает а если файл к примеру с расширением *.doc то выскакивает окно.

Помогите как можно написать ссылку на скачивание текстового файла так что бы выскакивало окно скачать файл.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Дело в том, что файлы с расширением *.txt в дефлотной настройке сервера имеют MIME-Type - "text/plain". Браузеры в свою очередь открывают данный документ в своем окне, т.е. как обычную html-страницу. Если у вас сервер Apache, можно в .htaccess изменить Mime-type у TXT с помощью дерективы AddType. А самый быстрый и надежный способ, просто TXT файл заархивировать. :unsure:

Edited by Vialls
Link to comment
Share on other sites

  • 0

Точно, спасибо. Тогда можно создать файл download.php:

<?php
$filename = $_GET['filename'].'.txt';
$ins = array("/", "\\");
$outs = array("", "");
$filename = str_replace($ins, $outs, $filename);
if (!file_exists($filename))
{
die('Файл не найден');
}
header('Content-type: text/plain');
header('Content-Disposition: attachment; filename="download.txt"');
readfile($filename);
?>

в папку с ним, запихнуть все *.txt, и для скачивания обращатся к этому файлу "http://site.ru/txt/download.php?filename=имя_файла_без_расширения".

Возможно для имени файла, еще пару замен сделать и проверок. На скорую руку делал

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy