¿Sus entradas de WordPress devuelven un error 404 en su sitio web?
Este error se produce cuando puedes acceder al área de administrador y al blog de WordPress, pero cuando intentas abrir una entrada, verás el mensaje “404 No encontrado”.
En este artículo, le mostraremos cómo corregir las entradas de WordPress que devuelven errores 404.
¿Por qué mis entradas de WordPress devuelven un error 404?
Hay varias razones por las que sus entradas de WordPress pueden estar mostrando un error 404 “Página no encontrada”. Estos pueden incluir:
- Conflictos de plugins o temas: A veces, los plugins o temas que has instalado en tu sitio pueden interferir con la forma en que WordPress gestiona los permalinks. Esto puede provocar enlaces rotos y errores 404.
- Problemas de código personalizado: Si has añadido código personalizado a tu sitio web, puede haber errores en el código que estén afectando a los permalinks o causando otros conflictos, dando lugar a errores 404 para tus entradas.
- Problemas con su archivo .htaccess: El archivo .htaccess juega un papel importante en cómo WordPress estructura las URLs. Si este archivo está dañado o no existe, puede provocar errores 404 en las entradas.
Dicho esto, veamos cómo corregir las entradas de WordPress que devuelven errores 404. Puede utilizar los siguientes enlaces para ir directamente a las diferentes soluciones:
¿No quiere corregir los errores 404 usted mismo? ¡WPBeginner Pro Services puede ayudarte! Con nuestro asequible Soporte de Emergencia para WordPress, puedes contratar expertos para corregir errores 404, enlaces rotos, problemas de redireccionamiento y mucho más. Deje de estresarse por los problemas de WordPress y ¡consiga que se corrijan! Programe hoy mismo un servicio de soporte de emergencia para WordPress.
Tutorial en vídeo
Si prefiere instrucciones escritas, siga leyendo.
Método 1: Comprobar si hay conflictos de plugins o temas y problemas de código personalizado
A veces, los plugins, temas o código personalizado que has añadido a tu sitio de WordPress pueden interferir con los enlaces permanentes o causar conflictos, dando lugar a errores 404. Incluso lo hemos experimentado nosotros mismos cuando probamos herramientas en nuestro sitio de demostración.
Una forma de resolver este problema es desactivar temporalmente los plugins. Los plugins a veces pueden alterar la forma en que WordPress gestiona los enlaces.
Una vez que hayas desactivado los plugins, puedes reactivarlos uno a uno mientras compruebas si el error 404 reaparece después de activar cada plugin. Si el error aparece después de activar un plugin específico, ese podría ser el culpable.
A continuación, puede buscar soluciones relacionadas con ese plugin o ponerse en contacto con el desarrollador del plugin para obtener ayuda.
Del mismo modo, su tema de WordPress podría estar causando el conflicto.
Para comprobarlo, puedes cambiar temporalmente a un tema predeterminado de WordPress como Twenty Twenty-Three o Twenty Twenty-Four. Solo tienes que ir a Apariencia “ Temas y hacer clic en “Activar” en un tema predeterminado.
Si el error 404 desaparece con el tema predeterminado, indica un posible conflicto con su tema actual. A continuación, puedes intentar solucionar el problema con el tema o considerar la posibilidad de utilizar un tema diferente.
Puede consultar nuestra selección de expertos de los temas de WordPress más populares para obtener recomendaciones.
Si ha insertado recientemente fragmentos de código en su sitio web, es posible que haya errores en el código que causen los errores 404. Examina detenidamente el código que has añadido y comprueba si puedes identificar algún error.
La forma más segura de añadir fragmentos de código a WordPress es con el plugin WPCode. Este plugin te permite insertar código personalizado sin trabajar directamente con los archivos del tema, lo que reduce el riesgo de romper tu sitio web.
Además, siempre que WPCode detecte un error en tu código, desactivará automáticamente el fragmento y te pedirá que lo compruebes. También puedes utilizar el modo de prueba para comprobar si tu código funciona antes de enviarlo a tu sitio web.
Si ninguna de estas soluciones funciona, pasa al siguiente método en el que solucionaremos los problemas de configuración de tu enlace permanente.
Método 2: Corregir la configuración de Permalink
Las entradas de WordPress pueden devolver errores 404 debido a problemas con las reglas de reescritura en su archivo .htaccess. En la mayoría de los casos, puede corregir el problema actualizando sus ajustes de enlaces permanentes.
Simplemente vaya a Ajustes ” Enlaces permanentes en el administrador de WordPress y haga clic en el botón “Guardar cambios”.
No es necesario realizar cambios en los ajustes de los enlaces permanentes. Esto actualizará los ajustes de enlaces permanentes y eliminará las reglas de reescritura.
En la mayoría de los casos, esta solución corrige el error 404 de las entradas de WordPress. Sin embargo, si no le funciona, probablemente necesite actualizar su archivo .htaccess manualmente.
Método 3: Actualizar el archivo .htaccess de WordPress
Antes de empezar, asegúrese de hacer una copia de seguridad de su archivo .htaccess de WordPress. Si algo va mal, puede restaurar fácilmente el archivo original.
Ahora, tendrá que conectarse a su servidor utilizando un cliente FTP como FileZilla o la aplicación Administrador de Archivos en el escritorio de alojamiento de WordPress.
A continuación, tendrá que encontrar y editar el archivo .htaccess, que se encuentra en la misma ubicación que carpetas como /wp-content/ y /wp-includes/.
Basta con hacer clic con el botón derecho en el archivo y seleccionar “Permisos de archivo”.
Puede hacer que el archivo sea de escritura cambiando sus permisos a 666.
Basta con introducir “666” en la casilla “Valor numérico” y hacer clic en “Aceptar”.
A continuación, debe repetir los pasos del primer método de nuestro tutorial. Una vez hecho esto, no te olvides de cambiar los permisos de nuevo a 660.
También puede editar el archivo y añadirle código.
Una vez que haya abierto el archivo .htaccess con un editor de texto, simplemente inserte este código:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Método 4: Póngase en contacto con su proveedor de alojamiento
Si ninguna de las soluciones anteriores ha corregido el error 404 de las entradas de WordPress, le recomendamos que se ponga en contacto con su proveedor de alojamiento de WordPress. Es posible que haya un error por su parte o que puedan ayudarte a diagnosticar el problema.
Consulte también nuestra guía sobre cómo solicitar soporte de WordPress correctamente y obtenerlo.
Método 5: Corregir el error 404 de las entradas de WordPress en servidores locales
Si está utilizando un servidor local para realizar pruebas, deberá activar mod_rewrite en la configuración de Apache de su sitio MAMP, WAMP o XAMPP.
Esto permitirá a WordPress generar URLs limpias y evitar el error 404 para entradas y páginas en su servidor local.
La forma de hacerlo dependerá de la plataforma que utilices. Las personas que utilizan XAMPP pueden abrir su panel de control y hacer clic en el botón ‘Config’ dentro de Acciones. Luego, selecciona ‘Apache (httpd.conf)’.
A continuación, tendrá que encontrar esta línea #LoadModule rewrite_module modules/mod_rewrite.so
y quitar el ‘#’ para descomentarla.
Esto cargará el mod_rewrite.
A continuación, busque todas las instancias de AllowOverride None
y cámbielas a AllowOverride All
.
El valor “Todas” significa que se pueden anular todas las directivas.
Una vez hecho esto, puedes guardar el archivo httpd.conf y cerrarlo. Después, en el panel de control de XAMPP, haz clic en ‘Detener’ en el módulo Apache y en ‘Iniciar’ de nuevo para reiniciarlo.
A continuación, vuelva a su panel de administrador para ver si sus enlaces permanentes están trabajando.
Esperamos que este artículo te haya ayudado a resolver el problema de las entradas que devuelven errores 404 en WordPress. Puede que también quieras ver nuestra guía sobre los errores más comunes de WordPress y cómo corregirlos, junto con nuestras selecciones de expertos sobre los mejores plugins de WordPress para hacer crecer tu sitio.
If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.
Farid
Thank you very much for precious article that is useful to fixed my website problem.. i always prefer your web solution regarding in problem in wordpress cms.
Thank you..;.
WPBeginner Support
You’re welcome, glad our guides have been helpful
Administrador
Ben
Just wanted to leave a thank you comment! Your guides on WordPress are second to none! I have learnt so much reading your blog and every time I Google a problem..I am looking for your website and that is where I will click! Great and simple instructions even on the most complicated WordPress issues…you are awesome! Thanks.
WPBeginner Support
You’re welcome, glad you like our content and hope our guides continue to be helpful
Administrador
David Naugle
This totally worked! I just updated my PHP and dashboard and home pages was accessible but not any of my post pages.
Thx
WPBeginner Support
You’re welcome, glad our guide was helpful
Administrador
Vivian S.
Thank You so much it saved my life! I had to move my WordPress website to a new server and it took me a whole day to fix everything. I wish WP had an easy way to do this.
WPBeginner Support
Glad our guide was helpful, for transferring your content you would want to take a look at our article below:
https://www.wpbeginner.com/wp-tutorials/how-to-move-wordpress-to-a-new-host-or-server-with-no-downtime/
Administrador
Gustavo
Thank you guys, you’re AWESOME, ALLWAYS!
WPBeginner Support
You’re welcome
Administrador
Don Current
I tried everything in the article with no success. What I ended up doing was choosing a different Permalink structure and saving it, and then going back to the structure I wanted and saving it. Then all was well.
WPBeginner Support
Thanks for sharing the method that worked for you
Administrador
James
I accidentally deleted .htaccess file when doing 301 and got the 404 not found error. Your tutorial came to my rescue. Just by saving the permalinks and it worked. Thank you.
WPBeginner Support
You’re welcome, glad our guide could help
Administrador
Ivan
Saved me! I am dealing with forces I cannot comprehend, and this explanation and tip was really helpful!
WPBeginner Support
Glad our guide was helpful
Administrador
Uwemedimo Usa
Wow, I’m shocked at how fast this worked. I recently migrated my site from a subdomain to the root domain and none of my links were working. All I did was go to permalinks in settings and click “save changes.” That was all. Wow. And I was really scared I’d broken something. Thank you.
WPBeginner Support
You’re welcome, glad we were able to help
Administrador
DNNY
What do you do if you cant even get into your WP
dashboard
WPBeginner Support
For that, you would want to take a look at our article below:
https://www.wpbeginner.com/beginners-guide/beginners-guide-to-troubleshooting-wordpress-errors-step-by-step/
Administrador
Katie
Hi, thanks for the tips. I still can’t seem to fix the error. Have reset Permalinks, installed a redirect plugin (doesn’t help if wanting to redirect to the homepage). I can’t work out how to alter the .htaccess and not really confident to do it. Any other suggestions?
WPBeginner Support
If you are using a static page ensure it is published, for the htaccess you would need to use FTP or your host’s file manager, otherwise, you would want to follow our troubleshooting guide below:
https://www.wpbeginner.com/beginners-guide/beginners-guide-to-troubleshooting-wordpress-errors-step-by-step/
Administrador
Fola
Thanks You saved me a lot of hassles
WPBeginner Support
You’re welcome
Administrador
Jill
THANK YOU for this post! I had a primary domain that I let go and needed to move two sites on my hosting plan…. 1 to the primary domain position and 1 to an addon domain position which was formerly a subdomain position. I broke a lot of stuff. With some logical thought, I got most of it all back… EXCEPT all the pages on the primary domain site couldn’t be viewed on the live site once you clicked on them or the menu links. The home page loaded beautifully, but when you clicked a post or link… the errors popped up. This trick resolved those issues… so THANK YOU again! You saved the day!
WPBeginner Support
You’re welcome, glad our guide was helpful
Administrador
umesh
I just change the permalink directly and it shows 404 error I couldn’t access my website it redirects me to another site which is not mine
WPBeginner Support
You would want to reach out to your hosting provider to ensure your domain is set up properly and there isn’t any malicious code on your site.
Administrador
faheem
404 Not Found
nginx/1.10.3 (Ubuntu)
please give me solution for that
WPBeginner Support
For nginx, at the moment you would want to reach out to your hosting provider and they should be able to assist.
Administrador
Carene
I’m busy building a website via wordpress & cpanel. I by accident deleted the url in my dashboard. Now I don’t get even access. Is their any way to fix it.
WPBeginner Support
You would need to edit your site via phpMyAdmin similar to the article below. Instead of the users table you would need to edit the options table where you can readd your site address and url.
https://www.wpbeginner.com/beginners-guide/how-to-reset-a-wordpress-password-from-phpmyadmin/
Administrador
Long Nguyen-Vu
Just want to let you know that you’ve helped me save a lot of time searching.
Thanks so much.
WPBeginner Support
You’re welcome, glad our guide was able to help
Administrador
Jim
OMG I LOVE YOU
updating the permalinks and all is gold
THANK YOU
WPBeginner Support
Glad our guide was able to help
Administrador
Brandon G.
Updating permalinks fixed my 404 errors. Thanks!
WPBeginner Support
You’re welcome
Administrador
Musthafa
Updating the permalink worked perfectly. Thanks guys!
WPBeginner Support
You’re welcome, glad our guide was helpful
Administrador
ami
thanks its is working
WPBeginner Support
You’re welcome, glad our guide was helpful
Administrador
Heather
Simply saving changes in my permalinks did the trick. Thank you!
WPBeginner Support
You’re welcome, glad our guide was helpful
Administrador
Ekemini Robert
After saving changed for the permalink, it still returned the 404 error. Then I used the clear cache WP button at the top and the problem was solved.
WPBeginner Support
Glad you were able to resolve the issue
Administrador
Didar
Thank you so much !
WPBeginner Support
You’re welcome
Administrador
Ashish Agarwal
Thanks so much for this post. You are a lifesaver. Clicking ‘Save Changes’ on Permalinks under Settings did the job for me.
WPBeginner Support
Glad our recommendation was able to help
Administrador
Alex
I have issues on 404 Page not found.
I tried updating the permalinks but still not working and I also checked the .htacess file in our server and it’s the same on the above sample. But still not working.
WPBeginner Support
You may want to reach out to your hosting provider to ensure there are no issues on their end that could be a part of the issue
Administrador
Luiz Felipe
This simple solution saved me! thanks!!!!!!!
WPBeginner Support
You’re welcome
Administrador
Steve Dzwonczyk
The 2nd method worked for me (FTP and edit of the .htaccess file). Thank you very much.
WPBeginner Support
You’re welcome, glad our recommendation was helpful
Administrador
Pranesh
Thank you very much
WPBeginner Support
You’re welcome
Administrador
Anas
Thank you so much for this helpful tip. Was really bugging me a lot
WPBeginner Support
You’re welcome, glad our guide was helpful
Administrador
Michelle Kwok
thanks a lot.. it’s weird.. works at step one =)
WPBeginner Support
You’re welcome, glad our recommendation was able to help
Administrador
Steph
This worked at step 1. Thank you!
WPBeginner Support
You’re welcome, glad our guide could be helpful
Administrador
Ishmael
Many thanks, solved my problem.
WPBeginner Support
You’re welcome, glad our guide was helpful
Administrador
Shiraz
This article helped me bring my website back on. Thank you.
WPBeginner Support
You’re welcome
Administrador
mariam
Thanks for this post,it really solved my 404 error problems
WPBeginner Support
Glad our recommendations were able to help
Administrador
Tim
Just a quick note to say thank you so much! I had just activated a CDN (learning as I go) and thought I had broken my site and went searching everywhere but here was the answer…phew!
WPBeginner Support
Glad our guide could help
Administrador
Lou Sarmiento
Hi!
I’ve added the htaccess script, updated my wordpress but still I need to resave the permalinks. Any other solution?
Thanks!
WPBeginner Support
If these solutions are not working, you would likely need to ensure there isn’t an error on your host’s end or you could try the recommendations in our troubleshooting guide here:
https://www.wpbeginner.com/beginners-guide/beginners-guide-to-troubleshooting-wordpress-errors-step-by-step/
Administrador
Ayesha
i have 404 error but cannot acces neither the site or the wordpress. how can you access wordpress admin to solve the problem??
WPBeginner Support
If you’re unable to access your admin area, you would want to go through our guide below or reach out to your hosting provider:
https://www.wpbeginner.com/beginners-guide/beginners-guide-to-troubleshooting-wordpress-errors-step-by-step/
Administrador
Nera
Lifesaver! It worked! Flushing permalinks! Haleluja… THANKS!
WPBeginner Support
Glad our recommendation could help
Administrador
wajid virk
on clicking save changes my problem Resolved, WP beginner is a part of my journey to learn WordPress more and more.
WPBeginner Support
Glad we can be here to help
Administrador
Safa
You just saved me, Thanks
WPBeginner Support
You’re welcome
Administrador
Nora
Thank you so much! This saved our corporate website
WPBeginner Support
Glad our article was helpful
Administrador
Mary Ann
Will it work in 404 error of Wordpress Multisite once I visit the admin dashboard of the sub-sites?
WPBeginner Support
It would depend on the source of the error but this can certainly be one solution.
Administrador
beginner
Thank you, it solved the issue straight away!
WPBeginner Support
Glad our article could help
Administrador
Civali
.htaccess example worked for me, tks!
WPBeginner Support
Glad our recommendation could help
Administrador
Vishwajeet
So I checked all solutions and comments. I have same issue with a twist. I can see the pages when I am changing it to use the Page ID but not when I am selecting the Post-Name? Any solution to this? I know its weird.
WPBeginner Support
You may want to delete the current htaccess file and if that does not fix the issue, reach out to your host to ensure there isn’t an underlying error causing the problem.
Administrador
Mireille
Hello,
I just wanted to let you know that your website is of such great help ! I built my first Wordpress website and I managed to resolve many issues thanks to your articles. Thank you !
WPBeginner Support
Thank you, glad our articles have been helpful
Administrador
Benson Kanyi
Hello Guys,
I have been facing this issue for the last three days after migrating a new site from my localhost to an online CPanel server. Having tried a million and one option from various forums, none of them could work at all. The only solution that seems to work is disabling Mod_Security in the CPanel. I just did it and it works like a champ. Thanks
WPBeginner Support
Thanks for sharing the solution that worked for you
Administrador
hüseyin
I worked for days. It happened. cpanel mod security disable. solved the problem. Thanks BENSON
Christopher
Worked! Thanks!
WPBeginner Support
Glad our recommendation worked for you
Administrador
Peter
you blog saved me from disaster thanks so much. im learning so much now
WPBeginner Support
Glad our recommendation could help
Administrador