One particular media item is not served under one of the subdomains (strange)
In one site with multiple hosts (www.sitea.com, www.siteb.com) we host a few pdf documents. They can normally be accessed from both hosts domains (www.sitea.com/media/123/one.pdf and www.siteb.com/media/123/one.pdf). But one particular document causes a 404 on a one of the domains.
I cannot figure out what possible causes could do this. Any ideas? What am I missing?
One particular media item is not served under one of the subdomains (strange)
In one site with multiple hosts (www.sitea.com, www.siteb.com) we host a few pdf documents. They can normally be accessed from both hosts domains (www.sitea.com/media/123/one.pdf and www.siteb.com/media/123/one.pdf). But one particular document causes a 404 on a one of the domains.
I cannot figure out what possible causes could do this. Any ideas? What am I missing?
Using a "temporary" workaround to make pdf's open on the other domain :-p
$("a[href$='.pdf']").attr("href", function(i,href){return "http://www.sitea.com" + href});
is working on a reply...