@@ -4,33 +4,37 @@ <h1>Page not found</h1>
4
4
< p > < strong > The page you are looking for does not exist</ strong > (Error 404)</ p >
5
5
</ div >
6
6
< script >
7
- // Get the current path
8
- const path = window . location . pathname ;
7
+ function tryToRedirect ( ) {
8
+ // Get the current path
9
+ const path = window . location . pathname ;
9
10
10
- // Transform the path: lowercase the first letter of each segment
11
- const pathLowSegments = path
12
- . split ( '/' )
13
- . map ( segment => segment ? segment [ 0 ] . toLowerCase ( ) + segment . slice ( 1 ) : '' )
14
- . join ( '/' ) ;
11
+ // Transform the path: lowercase the first letter of each segment
12
+ const pathLowSegments = path
13
+ . split ( '/' )
14
+ . map ( segment => segment ? segment [ 0 ] . toLowerCase ( ) + segment . slice ( 1 ) : '' )
15
+ . join ( '/' ) ;
15
16
16
- // Redirect only if the transformed path is different from the current path
17
- if ( pathLowSegments !== path ) {
18
- window . location . replace ( pathLowSegments ) ;
19
- return ;
20
- }
17
+ // Redirect only if the transformed path is different from the current path
18
+ if ( pathLowSegments !== path ) {
19
+ window . location . replace ( pathLowSegments ) ;
20
+ return ;
21
+ }
22
+
23
+ // Redirect element/* to /*
24
+ if ( path . startsWith ( '/element/' ) ) {
25
+ const elementPath = path . slice ( '/element/' . length ) ;
26
+ if ( elementPath === 'index.html' ) {
27
+ return ;
28
+ }
21
29
22
- // Redirect element/* to /*
23
- if ( path . startsWith ( '/element/' ) ) {
24
- const elementPath = path . slice ( '/element/' . length ) ;
25
- if ( elementPath === 'index.html' ) {
30
+ window . location . replace ( '/' + elementPath ) ;
26
31
return ;
27
32
}
28
33
29
- window . location . replace ( '/' + elementPath ) ;
30
- return ;
34
+ // Show the 'not-found' element if no redirect is needed
35
+ document . getElementById ( 'pathname' ) . textContent = path ;
36
+ document . getElementById ( 'not-found' ) . style . display = 'block' ;
31
37
}
32
38
33
- // Show the 'not-found' element if no redirect is needed
34
- document . getElementById ( 'pathname' ) . textContent = path ;
35
- document . getElementById ( 'not-found' ) . style . display = 'block' ;
39
+ tryToRedirect ( ) ;
36
40
</ script >
0 commit comments