Search code examples
phpapachemod-rewrite

Apache error.log Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration


Was getting a 500 Internal Server Error checked the Apache log found this error:

Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration

Solution

  • Don't forget to Enable module rewrite :-)

    a2enmod rewrite
    systemctl restart apache2