-
Notifications
You must be signed in to change notification settings - Fork 8
/
generate-sitemaps.js
84 lines (83 loc) · 2.28 KB
/
generate-sitemaps.js
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
const sitemaps = new Set([
'/tab/features/account',
'/tab/features/contentmanage',
'/tab/features/chats',
'/tab/features/notifications',
'/tab/features/mypost/threads',
'/tab/features/myreply',
'/tab/features/mypost/favorites',
'/tab/features/mypost/attention',
'/tab/features/history',
'/tab/topics/latestPost/page/1',
'/tab/topics/latest/page/1',
'/tab/topics/search',
'/tab/topics/4/page/1',
'/tab/topics/71/page/1',
'/tab/topics/2/page/1',
'/tab/topics/245/page/1',
'/tab/topics/336/page/1',
'/tab/topics/61/page/1',
'/tab/topics/126/page/1',
'/tab/topics/82/page/1',
'/tab/topics/110/page/1',
'/tab/topics/62/page/1',
'/tab/topics/128/page/1',
'/tab/topics/98/page/1',
'/tab/topics/63/page/1',
'/tab/topics/248/page/1',
'/tab/topics/12/page/1',
'/tab/topics/219/page/1',
'/tab/topics/334/page/1',
'/tab/topics/84/page/1',
'/tab/topics/134/page/1',
'/tab/topics/199/page/1',
'/tab/topics/127/page/1',
'/tab/topics/136/page/1',
'/tab/topics/147/page/1',
'/tab/topics/65/page/1',
'/tab/topics/19/page/1',
'/tab/topics/259/page/1',
'/tab/topics/251/page/1',
'/tab/topics/308/page/1',
'/tab/topics/121/page/1',
'/tab/topics/122/page/1',
'/tab/topics/123/page/1',
'/tab/topics/169/page/1',
'/tab/topics/201/page/1',
'/tab/topics/202/page/1',
'/tab/topics/215/page/1',
'/tab/topics/171/page/1',
'/tab/topics/168/page/1',
'/tab/topics/170/page/1',
'/tab/topics/44/page/1',
'/tab/topics/316/page/1',
'/tab/topics/9/page/1',
'/tab/topics/24/page/1',
'/tab/topics/26/page/1',
'/tab/topics/17/page/1',
'/tab/topics/137/page/1',
'/tab/topics/221/page/1',
'/tab/topics/294/page/1',
'/tab/topics/317/page/1',
'/tab/topics/10/page/1',
'/tab/topics/318/page/1',
'/tab/topics/77/page/1',
'/tab/topics/16/page/1',
'/tab/topics/25/page/1',
'/tab/topics/116/page/1',
'/tab/topics/15/page/1',
'/tab/topics/120/page/1',
'/tab/topics/45/page/1',
'/tab/topics/20/page/1',
'/tab/topics/23/page/1',
'/tab/topics/223/page/1',
'/tab/topics/14/page/1',
'/tab/topics/119/page/1',
'/tab/topics/81/page/1',
'/tab/topics/50/page/1',
'/tab/topics/92/page/1',
'/tab/topics/67/page/1',
'/tab/topics/27/page/1',
'/tab/topics/47/page/1',
])
sitemaps.forEach((it) => console.log('https://hkepc.pro' + it))