A lot of 302 redirects
- by user3651934
I have a website for which one month stat shows:
Unique Visitors 6274
Total Visitors 7260
Pages visited 9520
Hits 88891
Whats concerns me about is the HTTP status code:
302 Moved temporarily (redirect) 36302
How come 40% hits are being redirected. If it is not normal, what could be the possible reasons?
------------------------ adding more information ------------------------
Ok, here is the code I'm using in my .htaccess file for clean URLs. Is this causing as many as 36302 redirect hits?
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^([^\.]+)$ $1.php [L]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+[^/])$ $1/ [R]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?page=$1 [L,QSA]
RewriteRule ^(.*)/$ index.php?page=$1 [L,QSA]