如果存在cookie
RewriteCond %{HTTP_COOKIE} tuid=([^;]+) [NC]
RewriteRule ^(dt)$ /ddrc.php?tuid=%1 [R=permanent,QSA,L]
如果cookie不存在
RewriteCond %{HTTP_COOKIE} !tuid=[^;]+ [NC]
RewriteCond %{QUERY_STRING} ^.*&go=([^?&]*)\??([^&]*)&*.*$
RewriteRule ^dt$ ${allowed_sites:%1|/dt.gif}?%2 [NE,E=PROCESSED:TRUE]
此htaccess文件已编写为重定向具有cookie的用户,并避免重定向其他不包含cookie的用户。它由" tuid"的值决定,如果tuid包含一个值,那么如果没有重定向用户,则用户重定向。
现在我想重定向那些没有" tuid"价值也是如此,我已经尝试了一段时间没有运气......任何人都可以帮助我并找到这个东西