- 扫描 ID:
- cd8bca7e-f353-4f35-837c-8a5ed726c25f已完成
- 提交的 URL:
- https://lionbigolive.netlify.app/.com
- 报告完成时间:
链接 · 找到 1 个
从页面中识别出的传出链接
链接 | 文本 |
---|---|
https://answers.netlify.com/t/support-guide-i-ve-deployed-my-site-but-i-still-see-page-not-found/125?utm_source=404page&utm_campaign=community_tracking | “page not found” support guide |
JavaScript 变量 · 找到 3 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
控制台日志消息 · 找到 2 条
记录到 Web 控制台的消息
类型 | 类别 | 记录 |
---|---|---|
error | network |
|
error | network |
|
HTML
页面的原始 HTML 正文
<!DOCTYPE html><html lang="en"><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page not found</title>
<style>
:root {
--colorRgbFacetsTeal600: 2 128 125;
--colorTealAction: var(--colorRgbFacetsTeal600);
--colorRgbFacetsNeutralLight200: 233 235 237;
--colorHr: var(--colorRgbFacetsNeutralLight200);
--colorRgbFacetsNeutralLight700: 53 58 62;
--colorGrayDarkest: var(--colorRgbFacetsNeutralLight700);
--colorGrayLighter: var(--colorRgbFacetsNeutralLight200);
--colorText: var(--colorGrayDarkest);
--effectShadowLightShallow: 0 1px 10px 0 rgb(53 58 62 / 6%),
0 2px 4px 0 rgb(53 58 62 / 8%);
--colorRgbFacetsNeutralDark900: 6 11 16;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol";
background: white;
overflow: hidden;
margin: 0;
padding: 0;
line-height: 1.5;
color: rgb(var(--colorText));
}
@media (prefers-color-scheme: dark) {
body {
background: rgb(var(--colorRgbFacetsNeutralDark900));
}
}
h1 {
margin: 0;
font-size: 1.375rem;
line-height: 1;
}
h1 + p {
margin-top: 8px;
}
.main {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
}
.card {
position: relative;
width: 75%;
max-width: 364px;
padding: 24px;
background: white;
border-radius: 8px;
box-shadow: var(--effectShadowLightShallow);
border: 1px solid rgb(var(--colorGrayLighter));
}
a {
margin: 0;
font-weight: 600;
color: rgb(var(--colorTealAction));
text-decoration-skip-ink: all;
text-decoration-thickness: 1px;
text-underline-offset: 2px;
text-decoration-color: rgb(var(--colorTealAction) / 0.5);
transition: text-decoration-color 0.15s ease-in-out;
}
a:hover,
a:focus-visible {
text-decoration-color: rgb(var(--colorTealAction));
}
p:last-of-type {
margin-bottom: 0;
}
hr {
border: 0;
height: 1px;
background: rgb(var(--colorHr));
margin-top: 16px;
margin-bottom: 16px;
}
.your-site {
font-size: 0.875rem;
}
</style>
</head>
<body>
<div class="main">
<div class="card">
<h1>Page not found</h1>
<p>
Looks like you’ve followed a broken link or entered a URL that doesn’t
exist on this site.
</p>
<hr>
<p class="your-site">
If this is your site, and you weren’t expecting a 404 for this path,
please visit Netlify’s
<a href="https://answers.netlify.com/t/support-guide-i-ve-deployed-my-site-but-i-still-see-page-not-found/125?utm_source=404page&utm_campaign=community_tracking">“page not found” support guide</a>
for troubleshooting tips.
</p>
</div>
</div>
</body></html>