Hallo creiss,
vielen Dank für den Hinweis!
Ich wusste zwar nicht was mod_rewrite ist, aber nach etwas googlen wurde ich fündig. 🙂
Falls noch jemand anderes das Problem hat:
#grep -r -H durchsucht rekursiv alle verzeichnisse unter /var nach "mod_rewrite" und gibt mit Option -H den Pfad aus
[root@Server0815/]# grep -r -H "mod_rewrite" /var
… /var/www/html/i-doit/rfc/system/guide/kohana/tutorials/clean-urls.md:If you are still getting errors, check to make sure that your host supports URL mod_rewrite. If you can change the Apache configuration, add these lines to the the configuration, usually **httpd.conf**:
#find -iname httpd.conf durchsucht alle verzeichnisse nach der Datei httpd.conf
[root@Server0815/]# find -iname httpd.conf
./etc/httpd/conf/httpd.conf
[root@Server0815/]# grep -r -H "AllowOverride" /etc
/etc/httpd/conf/httpd.conf: AllowOverride None
siehe auch hier (in Zeile 151): http://www.server-world.info/en/note?os=CentOS_7&p=httpd
Viele Grüße
Mr.White