I'm working on developing a javascript framework and I don't want anyone to be able to link to the "nightly build" .js file directly on the server.

Based on my research from google, here's what I have in my htaccess:

<FilesMatch /development/flanvas/flanvas.js>
 ForceType applicaton/octet-stream
</FilesMatch>

And I've also tried putting a .htaccess file in /development/flanvas/ and adding:

AddType applicaton/octet-stream.js

Neither have worked so far :(

*edit

I suppose if a user really wanted to snag this, they could curl/ajax it. Is it advised to have the .htaccess check the HTTP_REFERER instead? This could potentially get two birds with one line..

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

Is the root of your server really the DocumentRoot for the website?

i.e. is /development/flanvas/flanvas.js the absolute path to the JS file on your machine?

I would try

<FilesMatch ^(.*)flanvas\.js$>
   ForceType applicaton/octet-stream
</FilesMatch>

or

<FilesMatch /path/to/documentroot/development/flanvas/flanvas.js>
   ForceType applicaton/octet-stream
</FilesMatch>

Hope this helps

link|improve this answer
this is ace, but how could i do this for multiple filetypes? – daniel Crabbe Aug 26 '11 at 14:21
Something like <FilesMatch ^(.*)\.(js|foo|bar|baz)$> – dianovich Aug 28 '11 at 22:08
cheers Dianovich... works a treat. – daniel Crabbe Aug 29 '11 at 13:04
feedback

This is the person that asked the question. Apparently I have no idea what account I posted this question under, but once I figure it out I'll come back and checkmark your question is it 100% worked.

Ended up using:

# Force download for flanvas.js
<FilesMatch ^(.*)flanvas\.js$>
 ForceType applicaton/octet-stream
</FilesMatch>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.