ERR_TOO_MANY_REDIRECTS : v parameter flip-flopping
-
My WordPress install (v5.3.2) redirects with a 307 back and forth between:
`
{site}/?v=xxxxxxx
{site}/?v=yyyyyyy
{site}/?v=xxxxxxx`
`
…until the memory limit has been hit. It gives an ERR_TOO_MANY_REDIRECTS page and then redirects to the page (except on Safari, which limits redirects to 20). I’ve disabled all plugins, and the .htaccess file is the standard WP:
`
# BEGIN WordPressRewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]# END WordPress
`
The kicker for me is:— If I’m inspecting in the network panel with “cache disabled”, it doesn’t happen.
— The second time I load a page it doesn’t happen.
— If I delete any segment of browsing history individually, or any but any one, it doesn’t happen.
— It only reoccurs when I delete all browsing history.My main line of inquiry is “Where does that v parameter come from?”, “Why does it keep changing”? Also, how to stop it from vacillating between two different v params? Thanks!
The page I need help with: [log in to see the link]
- The topic ‘ERR_TOO_MANY_REDIRECTS : v parameter flip-flopping’ is closed to new replies.