Merge pull request #10010 from atjonathan/fix/wiki-to-forum

Replaced wiki links with new forum links
This commit is contained in:
Mrugesh Mohapatra
2016-08-02 16:22:08 +05:30
committed by GitHub
15 changed files with 198 additions and 202 deletions

View File

@@ -4,8 +4,8 @@ module.exports = function(app) {
router.get('/nonprofit-project-instructions', function(req, res) {
res.redirect(
301,
'//github.com/FreeCodeCamp/freecodecamp/wiki/' +
"How-Free-Code-Camp's-Nonprofit-Projects-work"
'http://forum.freecodecamp.com/t/'
+ 'how-free-code-camps-nonprofits-projects-work/19547'
);
});
@@ -16,8 +16,7 @@ module.exports = function(app) {
router.get('/privacy', function(req, res) {
res.redirect(
301,
'//github.com/FreeCodeCamp/freecodecamp/wiki/' +
"Free-Code-Camp's-Privacy-Policy"
'http://forum.freecodecamp.com/t/free-code-camp-privacy-policy/19545'
);
});
@@ -26,7 +25,7 @@ module.exports = function(app) {
});
router.get('/field-guide/*', function(req, res) {
res.redirect(302, '/wiki');
res.redirect(302, 'http://forum.freecodecamp.com');
});
app.use(router);