var express = require("express");var app = express(); app.use(express.static('public')); app.listen(3000);
public文件夹下有个index.html
http://127.0.0.1:3000/index.html
http://127.0.0.1:3000/
这样都能直接打开index.html
然而
http://127.0.0.1:3000/public/...
这样输入反而是错误的.
这样有什么区别吗?
还有看教程 明明有app.use(express.static('public'));就可以访问静态html了,教程上
还加
app.get('/index.html',function(req,res){ res.sendFile(__dirname+"/index.html"); });
请问这么做有什么意义吗?
相关分类