我有一个目录结构,用于启用 pushState 的宁静快递服务+ Backbone客户端(public/
中的客户端代码)
app.js
lib/routes.js
-- public/
-- index.html
我将/public
设置为app.configure
中的静态目录:
app.use(express.static(__dirname + '/public'));
如果首先访问索引,这已经完成了。
然后,当我直接访问主页以外的路线时,我确保重定向到index.html
。这在app.js
,中完全正常,但如果我尝试将其放入lib/routes.js
,我会收到禁止错误:
来自app.js
正常工作:
app.get('*', function(req, res) {
res.sendfile(__dirname + '/public/index.html');
});
来自lib/routes.js
:
res.sendfile(__dirname + '../public/index.html');
给我:
Error: Forbidden
at SendStream.error (/Users/*****/Sites/myproject/node_modules/express/node_modules/send/lib/send.js:145:16)
at SendStream.pipe (/Users/*****/Sites/myproject/node_modules/express/node_modules/send/lib/send.js:307:39)
at ServerResponse.res.sendfile (/Users/*****/Sites/myproject/node_modules/express/lib/response.js:345:8)
at /Users/*****/Sites/myproject/lib/routes.js:8:7
at callbacks (/Users/*****/Sites/myproject/node_modules/express/lib/router/index.js:164:37)
at param (/Users/*****/Sites/myproject/node_modules/express/lib/router/index.js:138:11)
at pass (/Users/*****/Sites/myproject/node_modules/express/lib/router/index.js:145:5)
at Router._dispatch (/Users/*****/Sites/myproject/node_modules/express/lib/router/index.js:173:5)
at Object.router (/Users/*****/Sites/myproject/node_modules/express/lib/router/index.js:33:10)
at next (/Users/*****/Sites/myproject/node_modules/express/node_modules/connect/lib/proto.js:193:15)
如果我只是尝试:
res.sendfile('/public/index.html');
它无法找到该文件,我得到了:
Error: ENOENT, stat '/public/index.html'
总结一下如何使用sendFile
并从public/index.html
传入lib/routes.js
而不会收到Forbidden错误?
答案 0 :(得分:9)
谢谢@Joe。为了完整性,因为欺骗不是很清楚并尝试各种相对路径,包括尝试{root: 'somepath'}
作为第二个参数不起作用,这就是我所做的:
var path = require('path');
...
app.get('*', function(req, res) {
res.sendfile(path.resolve('public/index.html'));
});
即使它在使用基本目录解析的lib/
目录中,重新重申相对解析对我来说也不起作用,但可能有某种方法可以做到。