fixing up robots.txt

This commit is contained in:
Julian Lam
2014-03-11 19:44:48 -04:00
parent 08b2106e0f
commit f28c690f2f

View File

@@ -248,7 +248,7 @@ Controllers.robots = function (req, res) {
res.send(meta.config["robots.txt"]); res.send(meta.config["robots.txt"]);
} else { } else {
res.send("User-agent: *\n" + res.send("User-agent: *\n" +
"Disallow: /admin/\n" + "Disallow: " + nconf.get('relative_path') + "/admin/\n" +
"Sitemap: " + nconf.get('url') + "/sitemap.xml"); "Sitemap: " + nconf.get('url') + "/sitemap.xml");
} }
}; };