23 lines
411 B
JavaScript
23 lines
411 B
JavaScript
export default function robots() {
|
|
return {
|
|
rules: {
|
|
userAgent: "*",
|
|
allow: "/",
|
|
disallow: [
|
|
"/doc/",
|
|
"/help/",
|
|
"/bill/",
|
|
"/generatelink/",
|
|
"/invite/",
|
|
"/pay/",
|
|
"/purchased/",
|
|
"/tool/",
|
|
"/verification/",
|
|
"/vip/",
|
|
"/withdrawal/",
|
|
],
|
|
},
|
|
sitemap: "https://tiefen.fun/sitemap.xml",
|
|
};
|
|
}
|