This error may occur when attempting to access applications that have an index.php file (or other index file), but not an index.html or other specified ‘directory index’ file.
For example, phpMyAdmin includes an index.php file upon installation, but not an index.html file.
By default Apache is configured with the following:
1 |
DirectoryIndex index.html |
…meaning that Apache will only look for directory index files that are named index.html.
So, when attempting to access phpMyAdmin, Apache throws the following error:
[autoindex:error] [pid 20115] [client 192.168.8.10:3018] AH01276: Cannot serve directory /usr/share/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
In this case we want to add index.php to the DirectoryIndex directive.
1 |
vim /etc/httpd/conf/httpd.conf |
Change:
1 |
DirectoryIndex index.html |
to:
1 |
DirectoryIndex index.html index.php |
Then exit and save the file with the command :wq .
Be sure to restart Apache:
1 |
systemctl restart httpd |