Basically I want to create a situation where files served from my /cdn directory to use my cdn host rather than the local host.
How can I do this with apache rewrite?
I tried this but it doesnt work =/
RewriteEngine On
RewriteBase /cdn
RewriteCond %{HTTP_REFERER} ^.*\.dev\.*$ [OR]
RewriteCond %{HTTP_REFERER} ^.*\.qa\.*$
RewriteRule ^/cdn/(.*) http://www1.mycdn.com/$1
RewriteEngine Off