Without "AllowOverride MultiViews" in the VirtualHost,i can't install drupal 8 cms
I have managed to install directadmin 1.5 on the centos 7.2.1511 with Apache 2.4.18+ Php 7.0.4+ MariaDB 10.1.12+suphp,After installing Drupal 8.0.5 on my host, the toolbar css wasn't showing up. The admin links were showing as a list and a lot of the options weren't available because files from /sites/default/files were returning a 500 error[Through the Chrome browser:Failed to load resource: the server responded with a status of 500 (Internal Server Error)]. However,when I went to Administration > Configuration > Development > Performance and turned off Aggregate CSS files, the css started appearing.Drupal 8 is now explicitly setting Options -MultiViews in these .htaccess files, which is not allowed in some configurations without "AllowOverride MultiViews" in the VirtualHost. The commonly set "AllowOverride All" does not actually include MultiViews, which can cause further confusion.I don’t know how to set up mod_rewrite, The Apache Virtualhost configuration is:
<Directory />
Options All
AllowOverride All
</Directory>
<Directory /home>
AllowOverride All
Options -MultiViews -Indexes +FollowSymLinks +IncludesNoExec +Includes
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
Include /etc/httpd/conf/extra/httpd-hostname.conf
<Directory /var/www/cgi-bin>
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
I have managed to install directadmin 1.5 on the centos 7.2.1511 with Apache 2.4.18+ Php 7.0.4+ MariaDB 10.1.12+suphp,After installing Drupal 8.0.5 on my host, the toolbar css wasn't showing up. The admin links were showing as a list and a lot of the options weren't available because files from /sites/default/files were returning a 500 error[Through the Chrome browser:Failed to load resource: the server responded with a status of 500 (Internal Server Error)]. However,when I went to Administration > Configuration > Development > Performance and turned off Aggregate CSS files, the css started appearing.Drupal 8 is now explicitly setting Options -MultiViews in these .htaccess files, which is not allowed in some configurations without "AllowOverride MultiViews" in the VirtualHost. The commonly set "AllowOverride All" does not actually include MultiViews, which can cause further confusion.I don’t know how to set up mod_rewrite, The Apache Virtualhost configuration is:
<Directory />
Options All
AllowOverride All
</Directory>
<Directory /home>
AllowOverride All
Options -MultiViews -Indexes +FollowSymLinks +IncludesNoExec +Includes
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
Include /etc/httpd/conf/extra/httpd-hostname.conf
<Directory /var/www/cgi-bin>
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>