I want to allow access to a site outside the company, only via a link on the company site via .htacces configuration on 'www.myside.com'. The code below work to bring me to the site but my CSS, JPG, PNG, JS is not loaded.
<If "%{HTTP_REFERER} != 'https://www.CompanySite.com'">
Redirect / http://www.example.com/
</If>
What should be added/changed to make the site load all scripts etc?