Hi,
Title says it all.
Here is my apache conf:
ServerName %{HTTP_HOST}
<VirtualHost *:80>
DocumentRoot /app/data/public
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy
CustomLog "|/bin/cat" proxy
ErrorLog "|/bin/cat"
<Directory /app/data/public>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
# Do not remove this include. It's required for your app to see the Real IP
Include "/app/code/apache/rpaf.conf"
# This line can be commented out, if you do no require PHPMyAdmin Access
Include "/app/code/apache/phpmyadmin.conf"
</VirtualHost>
And in the top level .htaccess has:
RewriteEngine on
# If you know mod_rewrite is enabled, but you are still getting mod_rewrite
# errors, uncomment the line below and replace "/" with your base directory.
#
RewriteBase /
Thanks for any help!