Skip to content

Instantly share code, notes, and snippets.

@tomer
Created July 2, 2012 11:23
Show Gist options
  • Save tomer/3032755 to your computer and use it in GitHub Desktop.
Save tomer/3032755 to your computer and use it in GitHub Desktop.
rewrite files to download script by extensions
RewriteEngine on
RewriteRule ^(.*\.(rar|zip|pdf|tar|gz|iso))$ /~tomer/redirect/download.php?file=$1
<?php
header ('Content-Type: text/plain');
if (isset($_GET['file'])) print ('file = '. $_GET['file']);
else print ('No file specified');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment