有一个html文件下载而不是显示

fly*_*ire 0 html web-applications http

我正在写一个基于Web的文件管理员.如何在单击链接而不是显示链接时下载html文件.

Pēt*_*une 6

在服务器端,在提供文件时,添加以下标头:

Content-Disposition: attachment; filename="document.html"
Run Code Online (Sandbox Code Playgroud)

对于PHP中的考试,您可以:

header('Content-Disposition: attachment; filename="document.html"');
Run Code Online (Sandbox Code Playgroud)