var express = require("express");var app = express();
app.use(express.static('public'));
app.listen(3000);public文件夹下有个index.htmlhttp://127.0.0.1:3000/index.htmlhttp://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");
});请问这么做有什么意义吗?
添加回答
举报
0/150
提交
取消