如何为带有js和CSS文件的静态html页面提供相对路径?

时间:2019-03-29 18:24:10

标签: node.js express static-pages

我有一个HTML文件,其中包含如下所示的静态脚本导入:

<script src="assets/lib/script.js"></script>

该HTML文件是通过以下网址提供的:http://example.com/pr1/path/index.html

我正在使用快递服务器来提供此html页面:

import * as express from 'express';
import * as request from 'request';
const app = express();
app.get(/static\/.*/, (req, res) => {
request('http://example.com/pr1/path/index.html',{},(err,resp,body)=> {
        if(err) { return console.log(err)}
        res.send(body);
    })
})

但是与此相关的js文件和所有其他导入均无法正常工作。我将如何处理呢? 还有其他语言/图书馆可以解决我的问题吗?

0 个答案:

没有答案