Meine Apache-Conf für Shopware-Installationen, die ich in verschiedenen VMs verwende.
<VirtualHost *:80>
ServerAdmin hp@ubuntu.local
DocumentRoot "/var/www/shopware"
ServerName shopware.localhost
ServerAlias www.shopware.localhost
ErrorLog "/var/log/apache2/shopware.error.log"
CustomLog "/var/log/apache2/shopware.access.log" combined
RewriteEngine On
RewriteMap lc int:tolower
<Directory "/var/www/shopware">
Options Indexes FollowSymlinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>