-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsitemap.json
55 lines (55 loc) · 1.05 KB
/
sitemap.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
"rules": [
{
"action": "allow",
"page": "pages/index"
},
{
"action": "allow",
"page": "pages/poem/index"
},
{
"action": "allow",
"page": "pages/sentence/index"
},
{
"action": "allow",
"page": "pages/poet/index"
},
{
"action": "allow",
"page": "pages/poem/detail/index",
"params": ["id"],
"matching": "inclusive"
},
{
"action": "allow",
"page": "pages/poet/detail/index",
"params": ["id"],
"matching": "inclusive"
},
{
"action": "allow",
"page": "pages/sentence/list/index",
"params": ["isSearch", "theme", "type"],
"matching": "inclusive"
},
{
"action": "allow",
"page": "pages/sentence/detail/index",
"params": ["id"],
"matching": "inclusive"
},
{
"action": "allow",
"page": "pages/homeList/index",
"params": ["code", "name", "profile"],
"matching": "inclusive"
},
{
"action": "allow",
"page": "*"
}
]
}