Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有 express 和 jam 模板的 node.js 应用程序。刚才我像 any-host:8000 一样运行,但我需要更改为 any-host:8000/web/ 但这会导致更改所有 href 和位置 css、img、js ...
任何想法做某事以透明地实现
我试过:
app.namespace('/admin', function(){...}
但随后我需要更改应用程序中所有 html 链接的 href。
有什么建议么?
app.use('/urlbase', express.static(__dirname + '/public'));
(假设您的应用位于myapp/)。
myapp/