Files
gitea-docs/i18n/zh-tw/docusaurus-plugin-content-docs/version-1.26/administration/search-engines-indexation.md
2026-07-01 14:47:51 -07:00

31 lines
899 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
date: "2023-05-23T09:00:00+08:00"
slug: "search-engines-indexation"
sidebar_position: 60
aliases:
- /zh-tw/search-engines-indexation
---
# 搜索引擎索引
預設情況下,您的 Gitea 安裝將被搜索引擎索引。
如果您不希望您的儲存庫對搜索引擎可見,請進一步閱讀。
## 使用 robots.txt 阻止搜索引擎索引
爲了使 Gitea 爲頂級安裝提供自訂的`robots.txt`(預設爲空的 404請在 [`custom`文件夾或`CustomPath`]administration/customizing-gitea.md中建立一個名爲 `public/robots.txt` 的文件。
有關如何設定 `robots.txt` 的範例,請參考 [https://moz.com/learn/seo/robotstxt](https://moz.com/learn/seo/robotstxt)。
```txt
User-agent: *
Disallow: /
```
如果您將 Gitea 安裝在子目錄中,則需要在頂級目錄中建立或編輯 `robots.txt`
```txt
User-agent: *
Disallow: /gitea/
```