express - Node.js change url base with prefix -
i have node.js app express , jade templates. i've running any-host:8000 need change any-host:8000/web/ causes change href , location css,img,js...
any idea achieve transparently
i've tried with:
app.namespace('/admin', function(){...}
but need change href of html links in app.
any suggestions?
app.use('/urlbase', express.static(__dirname + '/public'));
(assuming app located in myapp/
).
Comments
Post a Comment