Skip to content

Apache2 configuration 404 page errors on Ubuntu LAMP

Robert Isoski edited this page May 22, 2020 · 1 revision

As reported here: https://github.com/robiso/wondercms/issues/204 by TheMagicNacho, there's an issue with WonderCMS returning 404 pages upon installation on Ubuntu based LAMP servers

Solution

The issue is with the Apache2 config file located in /etc/apache2/apache2.conf Locate your localhost directory within the config file and change AllowOverride None to AllowOverride All

This is what an example configured directory would look like:

<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>
Clone this wiki locally