1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-06 10:46:57 +00:00

Merge a4ee6bc2dff2ba60acfa129791822ff2b21c0ae2 into c7dc21aa81e2a0573bfb512c64e70088beac3b6e

This commit is contained in:
webplusai 2025-01-27 15:45:53 -05:00 committed by GitHub
commit 5a72930772
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -470,6 +470,20 @@ Server.prototype.requestHandler = function(request,response,options) {
return;
}
if (state.pathPrefix && !request.url.startsWith(state.pathPrefix)) {
// Prepend pathPrefix to request url
request.url = state.pathPrefix + request.url;
state.urlInfo = url.parse(request.url);
state.queryParameters = querystring.parse(state.urlInfo.query);
if(request.method === "GET") {
response.writeHead(301, {
'Location': request.url
});
response.end();
return;
}
}
// Find the route that matches this path
var route = self.findMatchingRoute(request,state);