ph4dge
Registered Member
- Feb 7, 2007
- 53
- 28
Using .htaccess I thought it should be possible to stuff 2 affiliate cookies at the same time using this method. It seems to sort of work the way I imagined, however it only seems to load the second affiliate cookie not the first one...
I know I could use a simple iframe but I like the fact that viewing the source really doesn't give anything away using this .htaccess method.
.htaccess file:
.html file:
any idea's
I know I could use a simple iframe but I like the fact that viewing the source really doesn't give anything away using this .htaccess method.
.htaccess file:
Code:
Redirect /pic1.jpg http://affiliate-1.com
Redirect /pic2.jpg http://affiliate-2.com
.html file:
Code:
<img src="http://www.domain.com/pic1.jpg" />
<img src="http://www.domain.com/pic2.jpg" />
any idea's