我需要在根据特殊cookie将用户重定向到登录页面时实现功能。我做了以下事情:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_COOKIE} !^hehehe [NC]
RewriteRule ^ / [NC,L]
# To externally redirect /dir/foo.php to /dir/foo
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.html [NC]
RewriteRule ^ %1 [R,L,NC]
## To internally redirect /dir/foo to /dir/foo.php
RewriteCond %{REQUEST_FILENAME}.html -f [NC]
RewriteRule ^ %{REQUEST_URI}.html [L]
当存在名称为hehehe的cookie时,我希望被重定向到索引页面。但我得到错误500.如何解决这个问题?
答案 0 :(得分:0)
这当然是因为在尝试显示索引页面时cookie也存在,并且会一次又一次地重定向到同一页面。
尝试:
RewriteCond %{HTTP_COOKIE} !^hehehe [NC]
RewriteRule !^$ / [R=302,NC,L]