Laravel no carga la ruta en Apache2 – Solucionado AWS / OceanDigital

Active el módulo mod_rewrite con el comando

sudo a2enmod rewrite

Y reinicia el apache

sudo service apache2 restart

Para usar mod_rewrite desde archivos .htaccess (que es un caso de uso muy común), edite el VirtualHost predeterminado con

sudo nano /etc/apache2/sites-available/000-default.conf

Busque “DocumentRoot / var / www / html” y agregue las siguientes líneas directamente debajo:

   <Directory "/var/www/html">
        AllowOverride All
    </Directory>


Guarde y salga del nano editor a través de CTRL-X, "y" y ENTER.

Y Renicia el apache

sudo service apache2 restart


English

codeigniter .htaccess in amazon ec2 removal of index.php not working – Fixed

codeigniter .htaccess in amazon ec2 removal of index.php not working – Fixed

(if you use ubuntu)
Activate the mod_rewrite module with

     sudo a2enmod rewrite

and restart the apache

     sudo service apache2 restart

To use mod_rewrite from within .htaccess files (which is a very common use case), edit the default VirtualHost with

     sudo nano /etc/apache2/sites-available/000-default.conf

Search for “DocumentRoot /var/www/html” and add the following lines directly below:

    <Directory "/var/www/html">
        AllowOverride All
    </Directory>

Save and exit the nano editor via CTRL-X, “y” and ENTER.

Restart the server again:

     sudo service apache2 restart

Deja una respuesta

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