I have two websites, site1 and site2.
site1 loads content from site2 in a frame. Now this content is password protected on site2 by a .htaccess
I have the following lines and can't figure out why when site1 loads the frame, it prompts for user/pass.
SetEnvIf Referer 'http://([a-z0-9-]+.)site1.com/.' refok
AuthName Members_Area
AuthType Basic
AuthDBUserFile /usr/local/www/data/passwd/site2.com.dat
<limit GET POST>
order allow,deny
satisfy any
allow from env=refok
require valid-user
</limit>
Can anyone help ??