techno
techno

Reputation: 6518

Redirect File Downloads to CDN

I want to redirect a file download from

mysite.com/setup.exe to supercoolcdn/setup.exe

I had earlier written some redirect rule myself,but it had resulted in loops and brought the website down eventually.

Can someone suggest me a proper way to do it.

Upvotes: 1

Views: 107

Answers (1)

anubhava
anubhava

Reputation: 785896

You can use redirect rule like this in your root .htaccess:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^(www\.)?mysite\.com$ [NC]
RewriteCond ^setup\.exe$ http://cdn.com/downloads%{REQUEST_URI} [L,R=301,NC]

Upvotes: 1

Related Questions