I have installed Simplify Email on a Vagrant box (Scotch Box) on my local machine. I used the example Apache configuration for set up. I can view the log in page, but when I try to submit my credentials, I get a 404: "The requested URL /user/login was not found on this server".
My configuration is below.
<VirtualHost *:80>
DocumentRoot /var/www/public/app
DirectoryIndex index.php
<Directory /var/www/public/app/>
AllowOverride All
Order Deny,Allow
Allow from all
</Directory>
</VirtualHost>
What am I doing wrong?
Thanks,
Andrew