小程序的收录规则主要通过 `sitemap.json` 文件来定义,该文件用于配置小程序页面的索引规则。以下是一个示例的 `sitemap.json` 文件内容,展示了如何编写收录规则:
```json
{
"rules": [
{
"action": "allow", // 是否能被索引
"page": "path/to/page", // 页面的路径
"params": ["a", "b"], // 被本规则匹配时可能使用的页面参数名称的列表
"matching": "exact" // 页面在被本规则匹配时,此参数说明 params 匹配方式
},
{
"action": "disallow", // 是否能被索引
"page": "path/to/page" // 页面的路径
}
]
}
```
规则说明
action:
`allow`: 表示该页面可以被索引。
`disallow`: 表示该页面不能被索引。
page:
指定要索引的小程序页面的路径。可以使用通配符 `*` 来匹配所有页面。
params:
指定在匹配规则时可能使用的页面参数名称的列表。
matching:
`exact`: 当小程序页面的参数列表等于 `params` 时,规则命中。
`inclusive`: 当小程序页面的参数列表包含 `params` 时,规则命中。
`exclusive`: 当小程序页面的参数列表与 `params` 交集为空时,规则命中。
`partial`: 当小程序页面的参数列表与 `params` 交集不为空时,规则命中。
示例
假设我们有一个小程序,有以下页面路径:
`/pages/home/index`
`/pages/home/detail?id=123`
`/pages/user/profile`
我们想要索引 `/pages/home/index` 页面,并且希望索引 `/pages/home/detail` 页面时参数 `id` 为 `123`,同时不希望索引 `/pages/user/profile` 页面。
那么,我们可以编写如下 `sitemap.json` 文件:
```json
{
"rules": [
{
"action": "allow",
"page": "/pages/home/index",
"params": [],
"matching": "exact"
},
{
"action": "allow",
"page": "/pages/home/detail",
"params": ["id"],
"matching": "exact"
},
{
"action": "disallow",
"page": "/pages/user/profile"
}
]
}
```
通过这种方式,我们可以精确地控制哪些页面被索引,哪些页面不被索引,以及索引的具体条件。