forked from MachinisteWeb/BlogAtlas
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathroutes.json
106 lines (106 loc) · 2.22 KB
/
routes.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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"/rss.xml": {
"redirect": "/feeds/articles.xml",
"statusCode": 301
},
"/recherche/": {
"view": "articles-by-search.htm",
"controller": "articles-by-search.js",
"variation": "articles-by-search.json"
},
"/recherche": {
"redirect": "/recherche/",
"statusCode": 301
},
"/categories/:category/": {
"view": "articles-by-category.htm",
"controller": "articles-by-category.js",
"variation": "articles-by-category.json"
},
"/categories/:category/": {
"view": "articles-by-category.htm",
"controller": "articles-by-category.js",
"variation": "articles-by-category.json"
},
"/categories/:category": {
"redirect": "/categories/:category/",
"statusCode": 301
},
"/categories/": {
"view": "categories.htm",
"controller": "categories.js",
"variation": "categories.json"
},
"/categories": {
"redirect": "/categories/",
"statusCode": 301
},
"/archives/:year/:month/": {
"view": "articles-by-month.htm",
"controller": "articles-by-month.js",
"variation": "articles-by-month.json"
},
"/archives/:year/:month": {
"redirect": "/archives/:year/:month/",
"statusCode": 301
},
"/archives/:year/": {
"view": "articles-by-year.htm",
"controller": "articles-by-year.js",
"variation": "articles-by-year.json"
},
"/archives/:year": {
"redirect": "/archives/:year/",
"statusCode": 301
},
"/archives/": {
"view": "archives.htm",
"controller": "archives.js",
"variation": "archives.json"
},
"/archives": {
"redirect": "/archives/",
"statusCode": 301
},
"/espace-membres/": {
"view": "login.htm",
"controller": "login.js",
"variation": "login.json"
},
"/espace-membres": {
"redirect": "/espace-membres/",
"statusCode": 301
},
"/upload/": {
"view": "json.htm",
"controller": "upload.js"
},
"/upload": {
"redirect": "/upload/",
"statusCode": 301
},
"/page-inexistante/": {
"view": "error.htm",
"controller": "error.js",
"variation": "error.json",
"statusCode": 404
},
"/:urn/": {
"view": "article.htm",
"controller": "article.js",
"variation": "article.json"
},
"/:urn": {
"redirect": "/:urn/",
"statusCode": 301
},
"/": {
"view": "index.htm",
"controller": "index.js",
"variation": "index.json"
},
"": {
"redirect": "/",
"statusCode": 301
}
}