Si después de instalar Drupal, cuando intentas acceder a otra página del sitio que no sea la HOME te sale pantalla blanca y el mensaje Not Found The requested URL was not found on this server
Prueba agregar el siguiente comentario hasta el final del archivo .conf
(ubicado en /etc/apache2/sites-available/
) de tu dominio después de <VirtualHost>
<Directory /var/www/EL-DIRECTORIO-DE-TU-SITIO.COM/>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*) index.php [PT,L]
Options FollowSymlinks
AllowOverride All
Require all granted
</Directory>
Reinicia el servidor con:
sudo service apache2 restart