我通过节点http-server module运行服务器。麻烦的是,它显示工作目录/document/js/
:
# /document/js/server.makefile
node ../node_modules/.bin/forever ../node_modules/.bin/http-server --cors &
# localhost:8080 shows content of /document/js/
我实际上希望我的服务器显示/document
的内容。
如何设置我的服务器的根文件夹(/document/js/server.makefile
),以便localhost:8080显示/document/
的内容?
答案 0 :(得分:0)
http服务器文档usage指出,您可以在选项之前输入路径。因此,在您的情况下,您可能想尝试类似的方法:
hs /document [your_options]
添加-o
,以在启动服务器后打开浏览器。