I believe this is likely more a server side issue, but..

Can anyone tell me (so I can head to the correct forum) what it takes to get the same effect that Angelfire has, ie: When someone posts a pic hosted by them somewhere else, it replaces said pic with a Image hosted by Angelfire pic instead.<br />
<br />
I'm sure that it's more then likely a server side issue, but I was wondering if it could be accomplished with Java Script or something?.. :confused: <br />
<br />
Any help appreciated.<!--content-->Apache .htaccess is one method, however since I don't have full command of my server when ever I have tried for amusement , I've manage to lock the whole site not just the images. <br />
<br />
I know the code works because I've used it on other sites with success you'd need something like this to stop *.gif and *.jpg hot linking:<br />
<br />
<br />
RewriteEngine on<br />
RewriteCond %{HTTP_REFERER} !^$<br />
RewriteCond %{HTTP_REFERER} !^http://your_domain.com/.*$ [NC]<br />
RewriteCond %{HTTP_REFERER} !^http://www.your_domain.com/.*$ [NC]<br />
RewriteRule .*\.(gif|GIF|jpg|JPG)$ - [F]<!--content-->Ok.. that all looks like Latin to me..:P<br />
<br />
Not much up on anything above basic html and cut/paste java script..:)<br />
<br />
Where would that code have to go exactly?..<!--content-->Within the .htaccess file if you have an Apache Server. For a better explanation: <!-- m --><a class="postlink" href="http://www.javascriptkit.com/howto/htaccess10.shtml">http://www.javascriptkit.com/howto/htaccess10.shtml</a><!-- m --><!--content-->Thanks, I'm giving it a look over now. :)<!--content-->
 
Back
Top