Serve .ICS files as binary files only through .htaccess or apache conf

When I upload the .ICS file to the server and try to upload it, it displays as text. I would like the Save As dialog box to appear so that the user can open the file as a binary file in Outlook.

What can I put in apache conf or .htaccess rule so that headers for ICS files work as binary. Example. The .doc file opens as a binary file.

Thanks.

+3
source share
1 answer

You need to add the following line to the .htaccess file:

AddType text / calendar.ics

+4
source

Source: https://habr.com/ru/post/1718851/


All Articles