Skip to content
Snippets Groups Projects
Verified Commit 7a3f9869 authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

change to redirect entire path

parent 68bd8370
No related branches found
No related tags found
2 merge requests!25Regular merge of develop,!24split url for dns redirect
......@@ -15,8 +15,15 @@
});
}
UrlExists('https://r3-core.pages.uni.lu/howto-cards-internal/index.html', function(status){
var pathArray = window.location.pathname.split('/');
var sub = pathArray[1];
var s = window.location.pathname;
var pathArray = s.split('/');
// cut the entire subdomain path
if (pathArray[0].length > 0) {
sub = s.substr(pathArray[0].length+1);
} else {
sub = '';
}
if(status === 200){
// internal pages
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment