File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010### Fixed
1111
12+ - Header links to About and Download
1213- Footer links referred to ` name ` instead of ` label ` .
1314
1415## [ 1.6.3] - 2025-11-29
Original file line number Diff line number Diff line change @@ -2,8 +2,15 @@ server.document-root = "/var/www/"
22index-file.names = ( "index.html", "fallback.html" )
33
44server.modules += ("mod_alias")
5- alias.url += ( "/download" => "/var/www/download.html" )
6- alias.url += ( "/about" => "/var/www/about.html" )
5+ alias.url += ( "/download/" => "/var/www/download.html" )
6+ alias.url += ( "/about/" => "/var/www/about.html" )
7+
8+ server.modules += ("mod_redirect")
9+
10+ url.redirect = (
11+ "^/about$" => "/about/",
12+ "^/download$" => "/download/",
13+ )
714
815server.modules += ("mod_setenv")
916setenv.add-response-header = ("Access-Control-Allow-Origin" => "*")
You can’t perform that action at this time.
0 commit comments