Skip to content

Commit

Permalink
.htaccess: Add "index.html" to DirectoryIndex
Browse files Browse the repository at this point in the history
The Doxygen-generated documentation uses index.html for their main page,
for example.
  • Loading branch information
alexbarton committed Feb 12, 2024
1 parent 49a97d9 commit bd612f8
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .htaccess
@@ -1,12 +1,22 @@
#
# Apache .htaccess configuration file for the ngIRCd Website
#

Options +MultiViews
AddLanguage en .en
AddLanguage de .de
AddType application/x-httpd-php .php
DirectoryIndex index.php
DirectoryIndex index.php index.html
LanguagePriority en de

# Issue Tracker

Redirect /bugzilla/index.cgi https://github.com/ngircd/ngircd/issues
Redirect /bugzilla/enter_bug.cgi https://github.com/ngircd/ngircd/issues/new
Redirect /bugzilla/query.cgi https://github.com/ngircd/ngircd/issues

# Documentation

Redirect /doc/AUTHORS https://github.com/ngircd/ngircd/blob/master/AUTHORS
Redirect /doc/COPYING https://github.com/ngircd/ngircd/blob/master/COPYING
Redirect /doc/ChangeLog https://github.com/ngircd/ngircd/blob/master/ChangeLog
Expand Down

0 comments on commit bd612f8

Please sign in to comment.