Hi Angelo,

This simply means that the redirection keeps going, like so:

foo.php
<?php
header('Location: /bar.php');
?>

bar.php
<?php
header('Location /foo.php');
?>

Check the logic in your application that decides if the user gets
redirected and make sure you're not making any incorrect assumptions.

Cheers,

David Grant

Angelo Zanetti wrote:
> Hi guys.
> 
> Been working on my site and then been trying to navigate through it, the
> once page redirects to another.
> 
> then all of a sudden I get this weird popup (in mozilla) "Redirection
> limit for this URL exceeded. Unable to load requested page"
> 
> Also IE seems to timeout.
> 
> The page redirects from http to https.
> 
> anyone come across this or know what the problem is?
> 
> Thanks in advance.
> 


-- 
David Grant
http://www.grant.org.uk/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to