diff --git a/src/routes/plugins.js b/src/routes/plugins.js index 334ad3fbbf..bcff6bf352 100644 --- a/src/routes/plugins.js +++ b/src/routes/plugins.js @@ -15,7 +15,7 @@ var _ = require('underscore'), module.exports = function(app, middleware, controllers) { // Static Assets app.get('/plugins/:id/*', function(req, res) { - var relPath = req._parsedUrl.pathname.replace(nconf.get('relative_path') + '/plugins/', ''), + var relPath = req._parsedUrl.pathname.replace('/plugins/', ''), matches = _.map(plugins.staticDirs, function(realPath, mappedPath) { if (relPath.match(mappedPath)) { return mappedPath; @@ -44,11 +44,11 @@ module.exports = function(app, middleware, controllers) { if (matches.length) { res.sendfile(matches[0]); } else { - res.redirect('/404'); + res.redirect(nconf.get('relative_path') + '/404'); } }); } else { - res.redirect('/404'); + res.redirect(nconf.get('relative_path') + '/404'); } }); };