I put together a quick WordPress site locally using MAMP, then checked it into an SVN repo. I then checked it out on to my development server.
I didn't change anything except to run the search and replace tool script from Interconnectit to updated the URL of the site in the database on the server.
Initially, I got a 500 server error. Checking the logs, I discovered that this "SoftException" was because index.php
was writeable by group - the permissions were 664. No problem - a quick change of permissions to 644 sorted that. So now the frontside was working.
However, strangely, the admin side of the site did not work. It just produced an endless redirect loop in all browsers.
Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects.
Nothing has changed since the local development version. The htaccess file is just a standard WordPress one. Nothing weird... still working fine locally.
So what's going on?
I faced same problem after I restore backup from other server , it was promissing issue I solve it this way .
Where
/var/www
the place to store website files , replace it with suitable path acurding to your configuration , eg/usr/share/nginx/www
<< default NginxFor whatever reason /wp-admin/ path causes a redirect loop, but /wp-admin/index.php does not. As such, we can use .htaccess to redirect the /wp-admin/ path to /wp-admin/index.php by adding the following line to your .htaccess file after "RewriteBase /" line like this:
It worked for me like that. You final .htaccess would probably look like this:
In the sites-enabled folder you will need to edit the configuration for your site and add the multisite redirection rules. For Ubuntu 14.04 you will be able to find the path under /etc/nginx/sites-available
Add the following block in your server block and you should be able to avoid the infinite redirection loop.
If you're using Cloudflare you might want to try adding this to the TOP of your wp-config.php file:
It's important that you add it to the top of the wp-config.php file or you'll end up with "Sorry, you are not allowed to access this page" error messages.
Credit: https://www.meltajon.com/dev/wordpress-wp-admin-redirect-loop-with-cloudflare-ssl
with nginx config I had originally only this line and experienced the same redirect issue:
after adding this everything was fine:
If you have nginx, then also check your index config. As for me I had an issue: I've set the following:
So as you see I've set index.php with trailing slash, which means that all rewrite requests will go to the index.php in document_root. For WP it's wrong, because wp-admin directory has its own index.php