Pārlūkot izejas kodu

now redirects to <path>/ when serving a directory's index.html

master
mortie pirms 7 gadiem
vecāks
revīzija
8f2f0886c1
1 mainītis faili ar 10 papildinājumiem un 2 dzēšanām
  1. 10
    2
      js/static.js

+ 10
- 2
js/static.js Parādīt failu

@@ -93,9 +93,17 @@ module.exports = function(root, before) {
return;
}

// If it's a directory, we want the index.html file
if (stat.isDirectory())
// If it's a directory, we want the index.html file,
// or redirect to <pathname>/
if (stat.isDirectory()) {
if (pn[pn.length - 1] !== "/") {
res.writeHead(302, { location: pn + "/" });
res.end();
return;
}

path = pathlib.join(path, "index.html");
}

// Send the file
send(path);

Notiek ielāde…
Atcelt
Saglabāt