从this的答案中,我知道我可以使用
检查cookie是否具有值。RewriteEngine On
RewriteCond %{HTTP_COOKIE} !cookie_name=specific_value; [NC]
但是我希望specific_value
是从文件/链接中提取的值的列表。这是.htacess和PHP混合使用时的意思
RewriteEngine On
RewriteCond %{HTTP_COOKIE} !cookie_name=file_get_contents("mycookielist.txt"); [NC]
RewriteEngine On
RewriteCond %{HTTP_COOKIE} !cookie_name=file_get_contents("http://example.com/mycookielist.txt"; [NC]