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:
commit
5a72930772
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user