I have a site that is working on the same server in a different url (staging), but now I\'ve deployed the site and the base url (\"/\") is redirected to the login url (so la
After adding
AllowOverride All
to the vhost configuration, got it working. Probably the default configuration wasn't allowing the redirects?
Here's my final (and working) vhost configuration:
DocumentRoot /var/www/sitefolder/public
ServerName site.domain.com
AllowOverride All
allow from all
Options +Indexes