Este problema parece ser común en Nginx con WordPress, y es tan simple como editar un archivo y listo, hay que buscar el archivo functions.php del tema que estemos utilizando en WordPress y agregar una linea de código.
Lo que pasa es que se hacen muchas redirecciones internas, y se termina haciendo un loop (ciclo) que vuelve inestable al sitio, el tema es que uno al no saber bien termina editando otras cosas que no resuelven nada y perdemos tiempo.
___________________________________________________________________
This errors apparently is a common issue when tried to install WordPress with nginx, and the solutions is so simple, we need to edit the file functions.php inside the actual wordpress theme active and add the following code.
Basically, the error is a internal redirection loop, that brokes the site and the browser returns the error ERR_TOO_MANY_REDIRECTS. And, if we don’t know why it appears maybe try to fix it editings anothers files, but the solution is the next.
functions.php:
remove_filter(‘template_redirect’, ‘redirect_canonical’);
También te puede interesar
Más lecturas cerca de este destino o tema.
Deja un comentario