运行代理脚本时.htaccess重定向我需要将某些URL重定向到DMCA删除页面

I've run into a problem I just cant solve that is:

I have a proxy script running on FileHound.co.uk

The htaccess file contains:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^ /?load=%{REQUEST_URI} [L,QSA]

I need to be able to redirect certain URL such as this:

filehound.co.uk/?load=/torrent/9392320/%5Ba-destiny%5D_toriko_-_135_(1280x720_hi10p_aac)_%5Bde83bd3d%5D.mkv

I want to prevent the link from displaying its destination instead being redirected to a page to i.e. /DMCA/DMCA.html

There are many links that need redirecting in a similar way. As I say its a proxy script and so I cant remove the page or material myself.

Any help would be much appreciated...

If you put all the links that need to be redirected in a database then you can query that table and redirect if it exists something like this (pseudo code):

# if (url in db)
#     redirect /DMCA/DMCA.html

Don't forget to sanitize your input, don't want sql injection ;)