Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我曾经用问号重命名链接,如下所示:
LinkName.mp4?至Anything I want.mp4
LinkName.mp4?
Anything I want.mp4
因此,链接将以“我想要的任何东西”的名称下载,而不是“链接名称”...
但是现在,问号不再起作用了!
有没有其他方法可以在没有任何脚本的情况下重命名链接?
我不认为你可以通过对 HTML 的简单更改来做到这一点。您可以重命名实际文件(因此链接本身),或制作一个 php 脚本来实现此特定功能。
我不明白的一件事是,您为什么不更改链接的显示文本,例如
<a href="anything_you_want.mp4">LinkName</a>
更新:
您可以像这样在 html5 中执行此操作(在旧浏览器中不起作用):
<a href="linkname.mp4" download="anything_you_want.mp4">Link Title</a>
MDN 参考