Skip to content

Instantly share code, notes, and snippets.

@BronsonQuick
Created January 22, 2013 05:43
Show Gist options
  • Select an option

  • Save BronsonQuick/4592403 to your computer and use it in GitHub Desktop.

Select an option

Save BronsonQuick/4592403 to your computer and use it in GitHub Desktop.
Force mp3's to download
#Add this to .htaccess
<FilesMatch "\.(?i:mp3)$">
ForceType audio/mpeg
SetEnvIf Request_URI "^.*/?([^/]*)$" FILENAME=$1
Header set Content-Disposition "attachment; filename=%{FILENAME}e"
UnsetEnv FILENAME
</FilesMatch>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment