Htaccess to redirect all calls to mp3 files to a PHP proxy


/ Published in: Other
Save to your folder(s)

Redirects all calls to mp3 files to a proxy (usefull fr example to track stats on db) the +FollowSymlinks should be already setted, but if it isnt' this setting with use it. FollowSymlinks must be on to use the rewrite engine.


Copy this code and paste it in your HTML
  1. Options +FollowSymlinks
  2. RewriteEngine on
  3. RewriteRule ^(.*)\.mp3$ /proxy.php?z=$1.mp3 [QSA]

URL: http://www.barattalo.it/2010/05/02/10-htaccess-usefull-tips/

Report this snippet


Comments


You need to login to view comments.