Skip to content

Commit 8144324

Browse files
committed
Fix redirects
1 parent f1075dd commit 8144324

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

gatsby-node.js

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1393,12 +1393,6 @@ const createRedirects = ({ actions }) => {
13931393
isPermanent: true,
13941394
});
13951395

1396-
createRedirect({
1397-
fromPath: '/results-visualization/influxdb-+-grafana/',
1398-
toPath: '/results-output/grafana-dashboards/',
1399-
isPermanent: true,
1400-
});
1401-
14021396
createRedirect({
14031397
fromPath: '/results-visualization/netdata/',
14041398
toPath: '/results-output/real-time/netdata/',
@@ -1598,7 +1592,19 @@ const createRedirects = ({ actions }) => {
15981592
});
15991593

16001594
createRedirect({
1601-
fromPath: '/results-output/real-time/influxdb-grafana',
1595+
fromPath: '/es/visualizacion-de-resultados/influxdb-grafana/',
1596+
toPath: '/results-output/grafana-dashboards/',
1597+
isPermanent: true,
1598+
});
1599+
1600+
createRedirect({
1601+
fromPath: '/results-output/real-time/influxdb-grafana/',
1602+
toPath: '/results-output/grafana-dashboards/',
1603+
isPermanent: true,
1604+
});
1605+
1606+
createRedirect({
1607+
fromPath: '/results-visualization/influxdb-+-grafana/',
16021608
toPath: '/results-output/grafana-dashboards/',
16031609
isPermanent: true,
16041610
});

0 commit comments

Comments
 (0)