Forum Replies Created

Viewing 1 replies (of 1 total)
  • I was struggling with this exact issues for the past 6 hours. The default multisite url (sitename.sites.provider.com) was working with images. Once I enabled domain mapping and set a primary domain (sitename.com) the images would not load. After no luck I decided to upgrade from 3.3.? to 3.4.2. This did not help ??

    In the end I was able to getting is working with editing my Apache config.

    The virtual host was:

    <VirtualHost *:80>
            ServerAdmin webmaster@localhost
    
            DocumentRoot /home/user/domains/sitename.com/html
            <Directory />
                    Options FollowSymLinks
                    AllowOverride None
            </Directory>
    </VirtualHost>

    I had to change it to:

    <VirtualHost *:80>
            ServerAdmin webmaster@localhost
    
            DocumentRoot /home/user/domains/sitename.com/html
            <Directory />
                    Options FollowSymLinks
                    AllowOverride All
            </Directory>
    </VirtualHost>

    While Googleing I noticed people saying you need to add the AllowOverride All. I didn’t double check this because the redirects that were in the .htaccess file were working, but it turns out the 301 Redirect plugin was responsible for that, not the .htaccess file.

    SSL probably works because the virtual host for SSL has AllowOverride All set.

Viewing 1 replies (of 1 total)