Saltar al contenido

cómo corregir un error 404 No encontrado al intentar usar un ErrorDocument para manejar la solicitud. cuando no puede acceder a la página de inicio de sesión para el ejemplo de código de wordpress

Posteriormente a investigar con especialistas en el tema, programadores de diversas ramas y profesores hemos dado con la solución al dilema y la plasmamos en este post.

Ejemplo 1: error de página interna de wordpress no encontrada

NOTE : If you got this error after installing wordpress on a newly configured 
ubuntu server
----------------------------------
1. sudo a2enmod rewrite

2. Add AllowOverride All in virtual host

    Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted
Directory>

3. restart apache

Ejemplo 2: se muestra la página principal de wordpress pero otras páginas muestran la página no encontrada

There can be two solutions for this 
1. Modify .Htaccess with the code given below:

  # BEGIN WordPress

  RewriteEngine On
  RewriteBase /
  RewriteRule ^index.php$ - [L]
  RewriteCond %REQUEST_FILENAME !-f
  RewriteCond %REQUEST_FILENAME !-d
  
  RewriteRule . /index.php [L] 
  #If project is inside the subfolder
  #RewriteRule . /PATH_TO_SUB_FOLDER/index.php [L] 

  # End WordPress
  
2. Correct The Permalinks Structure
	If you can access you admin panel, Then
      
      Step 1. Inside Settings and then on Permalinks
      (Take a look at the current setting. If you’re using a custom permalink
      structure, copy-save it somewhere.)
      
      Step 2. Select Default.
      
      Step 3. Click on Save Settings.

	If not then inside your database :
	
    options table => Search `permalink_structure` and set it to /%postname%/
    
reference: 
https://www.pickaweb.co.uk/kb/wordpress-fix-404-not-found-error/#:~:text=You%20can%20also%20fix%20the,permalinks%20of%20your%20WordPress%20site.&text=Log%20into%20WordPress%20Dashboard.,copy%2Dsave%20it%20somewhere.)

Eres capaz de añadir valor a nuestra información participando con tu experiencia en las acotaciones.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *