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.
我在 HTML 网页中链接到从 Outlook 导出的 .ics 文件。
<a href="calendar.ics" >Save the Date</a>
此链接将在浏览器(Chrome 和 Firefox)中以纯文本形式打开“calendar.ics”文件。我想自动下载 .ics 文件。我可以向链接标签添加什么以产生所需的行为?
我试过webcal://了,但它会在 Outlook 2010 中添加一个日历标签。这对我来说太多了。
webcal://
任何建议表示赞赏!
我还没有测试过,但我认为这应该可以。
在您的 .htaccess 文件中:
<filesMatch "\.ics$"> <ifModule mod_headers.c> Header set Content-type "text/calendar" </ifModule> </filesMatch>
或者
<filesMatch "\.ics$"> ForceType 'text/calendar' </filesMatch>
AddType text/calendar .ics