我在我的应用中运行了nodejs和php,但只能使用一个端口。所以我想做的是让nodejs成为端口上的用户,然后通过路由将 index.php 提供给用户,例如:
app.get("index.php")
有没有人知道如何做到这一点?非常感谢你......
答案 0 :(得分:0)
您可以尝试将要用作应用程序主入口点的index.php文件放在package.json文件中。只需用您自己的URL替换主属性即可。
的package.json:
{
"name": "NodeTesting",
"description": "Used for node testing and developing scripts",
"version": "0.0.1",
"main": "http://localhost/launchjs/index.php",
"author": {
"name": "bytewarestudios",
"email": "admin@bytewarestudios.com"
},
"keywords": [],
"licenses": {
"type": "none"
},
"repository": {
"type": "git",
"url": "git://github.com//bytewarestudios"
},
"bugs": {
"url": "http://github.com//NodeTesting/issues"
}
}