remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/apps/remix-ide/src/404.html

15 lines
437 B

3 years ago
<!DOCTYPE html>
<html>
<head>
3 years ago
<title></title>
3 years ago
</head>
<body></body>
<script>
3 years ago
let route = window.location.pathname
if (route.startsWith('/address/0x') && route.length === 51) {
3 years ago
window.location.href = '/#/address=' + route.replace('/address/', '')
3 years ago
} else if (route.endsWith('.sol')) {
3 years ago
window.location.href = '/#/url=https://github.com' + route
3 years ago
} else window.location.href = '/'
3 years ago
</script>
</html>