Avatar of NevilleChinan
NevilleChinan
 asked on

mod_rewrite check HTTP_COOKIE exists redirect infinite loop problem

Hi I am trying to implement a website security system.  It works on the bases of cookies beeing set by login.php
i.e login.php will setcoookie(...) and send the user to the homepage.  Every page that is on the site will do a quick auth check and reset the cookie in specific the time + 3hrs.  
 
The main protection is in the config file for apache

in the <directory> directive for the directory that corresponds to the virtual host test.webpage.co.uk
I have the following code

<Directory "C:/Program Files/Apache Group/Apache2/htdocs/test">
   Options FollowSymlinks
   RewriteEngine On
   RewriteCond %{HTTP_COOKIE} !(sessionid) [NC]
   RewriteRule ^.*$ http://test.webpage.co.uk/login.php [L,R]
   RewriteCond %{REQUEST_URI} ^/index.php
   RewriteRule (.*) http://test.webpage.co.uk/ [L,R]
</Directory>

I tired setting a cookie first before entering the lines
   RewriteCond %{HTTP_COOKIE} !(sessionid) [NC]
   RewriteRule ^.*$ http://test.webpage.co.uk/login.php [L,R]
into the config file.  Everything works

now I entered the lines
  RewriteCond %{HTTP_COOKIE} !(sessionid) [NC]
   RewriteRule ^.*$ http://test.webpage.uk/login.php [L,R]
into the config file.  Everything works

Now when I delete the cookies fire fox displays

The page isn't redirecting properly
Firefox has detected that the server is redirecting the request for this address in a way that will never complete

So if anyone needs to login for the first time that will be the page they see.  The page is redirecting to the right page, the url says http://test.webpage.co.uk/login.php on anything i try to access even files like http://test.webpage.co.uk/movies/k.wmv will redirect to login.php however never loads the page correctly
really stuck, any way around this?
Web DevelopmentWeb ServersApache Web Server

Avatar of undefined
Last Comment
HackneyCab

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Robin Hickmott

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
SOLUTION
HackneyCab

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck