diff options
| author | s1nical <[email protected]> | 2019-08-11 01:19:30 -0700 |
|---|---|---|
| committer | s1nical <[email protected]> | 2019-08-11 01:19:30 -0700 |
| commit | e2a67c59fd033485394d3a7144316e9110da19a1 (patch) | |
| tree | 50a48d222bc4ec0a17a5bbc282f35afc0b9a60f5 | |
| parent | replace "./" with absolute paths, added mobile redirects, added path reference (diff) | |
| download | s1n.pw-admin-e2a67c59fd033485394d3a7144316e9110da19a1.tar.xz s1n.pw-admin-e2a67c59fd033485394d3a7144316e9110da19a1.zip | |
fixed 404 absolute path stability issues...
| -rw-r--r-- | 404.html | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -5,7 +5,9 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>s1nical - 404</title> - <link rel="stylesheet" href="404/css/main.css"> + <link rel="stylesheet" href="/404/css/main.css"> + <!-- Why am I so dumb, I just found why the css wasn't working on the 404 with a trailing slash on Stack Overflow, lol, then I + went through, through ALL of the files checking if I had any more "./" instead of absolute path and turns out this is the only file I didn't go through...--> <script src="https://code.jquery.com/jquery-1.10.2.js"></script> </head> <body> @@ -17,7 +19,7 @@ <div class="torch"></div> - <script src="404/js/main.js"></script> + <script src="/404/js/main.js"></script> </body> </html> |