I have tried the .htaccess to prevent hotlinking but due to how the particular website that I am trying to work with, it doesn't seem possible. The only option I can think of is being able to embed some code in a header message of the website that will work in conjunction with a php/script in the directory of my server that will permit that site to hotlink my css and images.
I do custom skins/templates for clients of a fantasy football website called myfantasyleague.com , which hosts 1000's of leagues on over 40 servers. Each servers name is in the url along with a unique league id. When using the .htaccess rewrite code, I can only allow/deny an entire server, instead of certain leagues within that server. Examples of some of the URL's are as follows.
http://www30.myfantasyleague.com/2012/home/43896
http://football30.myfantasyleague.com/2012/options?L=43896&O=07
http://www9.myfantasyleague.com/2011/home/63845
http://football6.myfantasyleague.com/2012/standings?L=40042
You can see the different servers noted by 30,9,6 and the league id's which all come at the end of each URL
I do have access to the header message of each league i customize, so that is my thought process. I've tried everything I know using a .htaccess file placed in the directory on my server to only allow a specific league, but it doesn't work. You can see using anyone of the links about, their source code uses a script to place the league ID for each league in the URL
So, question is....is there anything I can do here?