Revista Informática

Como habilitar URLs limpias en Apache en un servidor Ubuntu

Publicado el 11 abril 2021 por Oscar Oscar Meza @vidagnu

Para habilitar URLs limpias en Apache en un servidor Ubuntu agregamos el siguiente código en el archivo /etc/apache2/apache2.conf.

<Directory /var/www/html>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</Directory>

Activamos el modulo rewrite en Apache con el siguiente comando.


Luego reiniciamos el servidor Apache con el siguiente comando para activar la configuración arriba expuesta.


Volver a la Portada de Logo Paperblog