Найден корректный robots.txt
Файл управления сканированием сайта роботами
?
Robots.txt указывает поисковым роботам, какие страницы сканировать, а какие — нет. Ошибки в файле могут случайно закрыть важные разделы от индексации.
Кол-во редиректов для файла robots.txt 3 слишком большое! Это может вызывать затруднение при индексации поисковыми роботами!
Проверяемая страница не запрещена в robots.txt.
Цепочка редиректов для файла robots.txt:
http://zone.dstny.com/robots.txt
301 MovedPermanently
https://zone.dstny.com/robots.txt
301 MovedPermanently
https://dstny.zone/
200 OK
Показать содержимое robots.txt
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dstny Zone</title>
<meta
name="description"
content="Dstny Zone - Your portal for service status, documentation, change notices, and more."
/>
<link rel="icon" type="image/png" href="assets/favicon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<style>
:root {
--dstny-cyan: #1ba9b5;
--dstny-dark-blue: #005c87;
--dstny-dark-gray: #38344d;
--dstny-black: #261616;
--dstny-magenta: #b41284;
--dstny-dark-purple: #7e0a5c;
--dstny-orange: #fe9305;
--dstny-yellow: #ffe652;
--dstny-bg-light: #f4f8f9;
--dstny-bg-surface: #ffffff;
--font-primary:
"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
--gradient-aurora: linear-gradient(
135deg,
#38344d 0%,
#7e0a5c 52%,
#b41284 100%
);
}
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
font-family: var(--font-primary);
background: var(--dstny-bg-light);
color: var(--dstny-black);
min-height: 100%;
-webkit-font-smoothing: antialiased;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
a {
color: var(--dstny-dark-blue);
}
/* ---------- Hero ---------- */
.hero {
position: relative;
background: var(--gradient-aurora);
color: #ffffff;
overflow: hidden;
}
/* soft atmospheric glow so the hero doesn't read as a flat panel */
.hero::after {
content: "";
position: absolute;
top: -30%;
right: -10%;
width: 55%;
height: 160%;
background: radial-gradient(
circle,
rgba(255, 230, 82, 0.18) 0%,
rgba(254, 147, 5, 0.08) 35%,
transparent 70%
);
pointer-events: none;
}
.hero-inner {
position: relative;
z-index: 1;
max-width: 1400px;
margin: 0 auto;
padding: 30px 5% 64px;
}
.hero-nav {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 60px;
}
.hero-nav img {
height: 30px;
width: auto;
}
.hero-nav .sticker {
height: 58px;
width: auto;
display: block;
}
.hero h1 {
font-size: 2.6rem;
font-weight: 700;
line-height: 1.15;
margin: 0 0 16px;
max-width: 720px;
}
.hero .lede {
font-size: 1.1rem;
font-weight: 300;
line-height: 1.6;
margin: 0;
max-width: 640px;
color: rgba(255, 255, 255, 0.92);
}
/* ---------- Public notice ---------- */
.notice-wrap {
max-width: 1400px;
margin: 0 auto;
padding: 36px 5% 0;
width: 100%;
}
.notice {
display: flex;
align-items: flex-start;
gap: 14px;
background: var(--dstny-bg-surface);
border-left: 4px solid var(--dstny-orange);
border-radius: 10px;
padding: 18px 22px;
box-shadow: 0 2px 10px rgba(38, 22, 22, 0.07);
}
.notice .dot {
position: relative;
flex-shrink: 0;
width: 11px;
height: 11px;
margin-top: 5px;
border-radius: 50%;
background: var(--dstny-orange);
}
.notice .dot::after {
content: "";
position: absolute;
inset: -5px;
border-radius: 50%;
border: 2px solid var(--dstny-orange);
opacity: 0.35;
}
.notice-body {
flex: 1;
}
.notice .label {
display: block;
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--dstny-orange);
margin-bottom: 4px;
}
.notice p {
margin: 0;
font-size: 0.96rem;
font-weight: 400;
color: var(--dstny-black);
line-height: 1.5;
}
.notice .dates {
margin-top: 6px;
font-size: 0.82rem;
font-weight: 300;
color: #6a6a72;
}
/* ---------- Cards ---------- */
main {
flex: 1;
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 40px 5% 72px;
}
.section-label {
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--dstny-cyan);
margin: 0 0 20px;
}
.cards {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
.card {
position: relative;
display: flex;
flex-direction: column;
background: var(--dstny-bg-surface);
border-radius: 14px;
padding: 34px 30px;
text-decoration: none;
color: inherit;
box-shadow: 0 2px 10px rgba(38, 22, 22, 0.07);
border-top: 4px solid var(--accent, var(--dstny-cyan));
transition:
transform 0.16s ease,
box-shadow 0.16s ease;
}
.card:hover,
.card:focus-visible {
transform: translateY(-4px);
box-shadow: 0 14px 32px rgba(38, 22, 22, 0.14);
outline: none;
}
.card h2 {
font-size: 1.28rem;
font-weight: 600;
color: var(--dstny-dark-gray);
margin: 0 0 10px;
}
.card p {
font-size: 0.95rem;
font-weight: 300;
color: #55555f;
line-height: 1.58;
margin: 0 0 22px;
flex: 1;
}
.card .link {
font-size: 0.9rem;
font-weight: 600;
color: var(--accent, var(--dstny-cyan));
display: inline-flex;
align-items: center;
gap: 6px;
}
.card .link svg {
width: 14px;
height: 14px;
transition: transform 0.16s ease;
}
.card:hover .link svg,
.card:focus-visible .link svg {
transform: translateX(4px);
}
.card.status {
--accent: var(--dstny-dark-purple);
}
.card.docs {
--accent: var(--dstny-cyan);
}
.card.notices {
--accent: var(--dstny-dark-blue);
}
.card.support {
--accent: var(--dstny-magenta);
}
/* ---------- Footer ---------- */
footer {
background: var(--dstny-black);
color: rgba(255, 255, 255, 0.6);
font-size: 0.8rem;
font-weight: 300;
}
.footer-inner {
max-width: 1400px;
margin: 0 auto;
padding: 26px 5%;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 10px;
}
.footer-inner a {
color: rgba(255, 255, 255, 0.75);
text-decoration: none;
}
.footer-inner a:hover {
color: #ffffff;
text-decoration: underline;
}
/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
.cards {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 560px) {
.cards {
grid-template-columns: 1fr;
}
}
@media (max-width: 600px) {
.hero-nav {
margin-bottom: 40px;
}
.hero h1 {
font-size: 1.9rem;
}
.hero .lede {
font-size: 1rem;
}
.hero-nav .sticker {
height: 42px;
}
.footer-inner {
justify-content: center;
text-align: center;
}
}
</style>
</head>
<body>
<header class="hero">
<div class="hero-inner">
<nav class="hero-nav">
<img
src="assets/dstny-Logo-inverted-large.png"
alt="Dstny"
onerror="this.onerror=null;this.src='assets/dstny-Logo-Color-large.png';"
/>
</nav>
<h1>Welcome to Dstny Zone</h1>
<p class="lede">
Your portal for service status, documentation, change notices, and more…
</p>
</div>
</header>
<div class="notice-wrap">
<div class="notice">
<span class="dot"></span>
<div class="notice-body">
<span class="label">News</span>
<p>
We're improving Dstny Zone to give you a better experience. To request
access to our new documentation portal at launch, submit a support ticket
via the link below. Questions? Email customersuccess@dstny.com and our
Customer Success team will be in touch.
</p>
<p class="dates">
Last updated: 2026-08-13
</p>
</div>
</div>
</div>
<main>
<div class="cards">
<a
class="card docs"
href="https://docs.dstny.zone"
target="_blank"
rel="noopener"
>
<h2>Documentation</h2>
<p>
Dstny Product and Service technical documentation.
</p>
<span class="link">
Visit docs.dstny.zone
<svg
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M13 6l6 6-6 6"></path>
</svg>
</span>
</a>
<a
class="card status"
href="https://dstnystatus.statuspage.io/"
target="_blank"
rel="noopener"
>
<h2>Service Status</h2>
<p>
Check the current operational status of Dstny services
and view any ongoing incidents.
</p>
<span class="link">
Visit service status
<svg
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M13 6l6 6-6 6"></path>
</svg>
</span>
</a>
<a
class="card notices"
href="https://status.dstny.zone"
target="_blank"
rel="noopener"
>
<h2>Change Notices</h2>
<p>
Stay up to date with planned changes, releases, and
service updates.
</p>
<span class="link">
Visit status.dstny.zone
<svg
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M13 6l6 6-6 6"></path>
</svg>
</span>
</a>
<a
class="card support"
href="https://destinygroup.atlassian.net/servicedesk/customer/portal/58"
target="_blank"
rel="noopener"
>
<h2>Support Portal</h2>
<p>
Raise a ticket, track requests, or get in touch with
the Support team.
</p>
<span class="link">
Visit the support portal
<svg
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M13 6l6 6-6 6"></path>
</svg>
</span>
</a>
</div>
</main>
<footer>
<div class="footer-inner">
<span>© 2026 Dstny. All rights reserved.</span>
<a
href="https://destinygroup.atlassian.net/servicedesk/customer/portal/58"
target="_blank"
rel="noopener"
>Contact Support</a
>
</div>
</footer>
</body>
</html>