sudo a2enmod rewrite
Agora, precisamos abrir o arquivo 000-default.conf localizado no diretório /etc/apache2/sites-enabled/. O comando para fazer isso é:
sudo nano /etc/apache2/sites-enabled/000-default.conf
Dentro deste arquivo, coloque o bloco de texto abaixo usando a linha
<VirtualHost *:80> <Directory /var/www/html> Options Indexes FollowSymLinks MultiViews # changed from None to FileInfo AllowOverride all Order allow,deny allow from all </Directory> #<Directory /var/www/html> #Options Indexes FollowSymLinks MultiViews #AllowOverride All #Order allow, deny #allow from all #</Directory> ServerAdmin localhost ServerName localhost DocumentRoot /var/www/html ErrorLog $/error.log CustomLog $/access.log combined </VirtualHost>
Mude também o All:
sudo nano /etc/apache2/apache2.conf
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
systemctl reload apache2