Skip to content

Commit a5ae1ef

Browse files
committed
Fixing the 404 page error.
1 parent 564a0a4 commit a5ae1ef

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed

public/404.html

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Single Page Apps for GitHub Pages</title>
6+
<script type="text/javascript">
7+
// Single Page Apps for GitHub Pages
8+
// MIT License
9+
// https://github.com/rafgraph/spa-github-pages
10+
// This script takes the current url and converts the path and query
11+
// string into just a query string, and then redirects the browser
12+
// to the new url with only a query string and hash fragment,
13+
// e.g. https://www.foo.tld/one/two?a=b&c=d#qwe, becomes
14+
// https://www.foo.tld/?/one/two&a=b~and~c=d#qwe
15+
// Note: this 404.html file must be at least 512 bytes for it to work
16+
// with Internet Explorer (it is currently > 512 bytes)
17+
// If you're creating a Project Pages site and NOT using a custom domain,
18+
// then set pathSegmentsToKeep to 1 (enterprise users may need to set it to > 1).
19+
// This way the code will only replace the route part of the path, and not
20+
// the real directory in which the app resides, for example:
21+
// https://username.github.io/repo-name/one/two?a=b&c=d#qwe becomes
22+
// https://username.github.io/repo-name/?/one/two&a=b~and~c=d#qwe
23+
// Otherwise, leave pathSegmentsToKeep as 0.
24+
var pathSegmentsToKeep = 1;
25+
var l = window.location;
26+
l.replace(
27+
l.protocol + '//' + l.hostname + (l.port ? ':' + l.port : '') +
28+
l.pathname.split('/').slice(0, 1 + pathSegmentsToKeep).join('/') + '/?/' +
29+
l.pathname.slice(1).split('/').slice(pathSegmentsToKeep).join('/').replace(/&/g, '~and~') +
30+
(l.search ? '&' + l.search.slice(1).replace(/&/g, '~and~') : '') +
31+
l.hash
32+
);
33+
</script>
34+
</head>
35+
<body>
36+
</body>
37+
</html>

public/index.html

+20
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,26 @@
2424
work correctly both with client-side routing and a non-root public URL.
2525
Learn how to configure a non-root public URL by running `npm run build`.
2626
-->
27+
<script type="text/javascript">
28+
// Single Page Apps for GitHub Pages
29+
// MIT License
30+
// https://github.com/rafgraph/spa-github-pages
31+
// This script checks to see if a redirect is present in the query string,
32+
// converts it back into the correct url and adds it to the
33+
// browser's history using window.history.replaceState(...),
34+
// which won't cause the browser to attempt to load the new url.
35+
// When the single page app is loaded further down in this file,
36+
// the correct url will be waiting in the browser's history for
37+
// the single page app to route accordingly.
38+
(function(l) {
39+
if (l.search[1] === '/' ) {
40+
var decoded = l.search.slice(1).split('&').map(function(s) {
41+
return s.replace(/~and~/g, '&')
42+
}).join('?');
43+
window.history.replaceState(null, null, l.pathname.slice(0, -1) + decoded + l.hash);
44+
}
45+
}(window.location))
46+
</script>
2747
<title>React Auth0</title>
2848
</head>
2949
<body>

0 commit comments

Comments
 (0)