I enabled mod_speling Code: a2enmod speling service apache2 restart I then added Code: CheckSpelling on CheckCaseOnly on into .htaccess file on the root of the website That didn't work I modified /etc/apache2/sites-enabled/100-abcwebsite.com.vhost file and included Code: <IfModule mod_speling.c> CheckCaseOnly on CheckSpelling on </IfModule> That didn't work I went into Sites-> [Clicked on the website] -> Options -> Apache Directives and added Code: <Directory /var/www/abcwebsite.com/web> CheckSpelling on CheckCaseOnly on AllowOverride All Require all granted </Directory> Still not working. Am I missing something?
Try to add this: <Directory /var/www/abcwebsite.com/web> CheckSpelling on CheckCaseOnly on AllowOverride All Require all granted </Directory> a second time, but use as path the "real" path /var/www/clients/clientX/webX/web
Thanks, just tried that with same result. Does it matter in what order that is in the file compared to the other stuff in the vhost file? Trying to figure out if something in the default directives is messing with this mod.
found another forum with someone having a similar problem and also no solution. Should I downgrade to 3.0? Is this possible?
No, ispconfig 3.0 won't run on ubuntu 16. What does your whole vhost file and htaccess file look like?