Force a file or image to download using .htaccess

后端 未结 1 453
执笔经年
执笔经年 2020-12-03 09:20

I have been trying to force images to download using PHP Headers but there have been multiple problems.

So, instead, how can I use .htaccess so that whe

相关标签:
1条回答
  • 2020-12-03 09:37

    Put this into your .htaccess

    <FilesMatch "\.(?i:jpg|gif|png)$">
      Header set Content-Disposition attachment
    </FilesMatch>
    

    Make sure you have mod_headers installed and enabled.

    0 讨论(0)
提交回复
热议问题