Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
R3
howto-cards
Commits
7a3f9869
Verified
Commit
7a3f9869
authored
Oct 28, 2019
by
Laurent Heirendt
✈
Browse files
change to redirect entire path
parent
68bd8370
Changes
1
Hide whitespace changes
Inline
Side-by-side
.ci/.autoRedirect
View file @
7a3f9869
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment