This is an Solaris apache 2.2.14 server and I want to only allow the site listed below to come up if the user clicked on a link from another page (specififed in the SetEnvIf below).
How can I allow the user to click around this screen if it was determined they originally came from the correct referrer? The referrer displayed when they click around this screen its own link, so they are denied. But I want them to click around here if they originally came from the correct site.
Thank you very much.
<VirtualHost *>
ServerAdmin webmaster-at-hccs.com
DocumentRoot /home/www/policy
ServerName policies.company.com
ErrorLog logs/policies.com-error_log
CustomLog logs/policies.com-access_log common
SetEnvIf Referer resite\.site\.com sitereferer
<Directory "/home/www/policy">
#Options None
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from env=site
</Directory>