简体   繁体   中英

Running PHP frontend site with node.js page connecting both together

I have created a php site, doing the basic stuff reading from a sqlite database, logging in etc. This is currently running on xampp on port 80 and all is fine.

I have created another page which is ran on node.js it uses socket.io and express.io. Currently running on port 8080.

I want to click on a link on the php site that directs me to the node.js page which are both on different ports. I hope this is understandable, I have done alot of searching on the matter and cannot find a viable solution.

Change the link to include the port of the node server, like so:

<a href="http://localhost:8080/yourNodePage">Node Page</a>

If you want to go back from Node to PHP:

<a href="http://localhost/yourPHPPage">PHP Page</a>

Maybe

<a href="http://localhost:8080">Link</a>

If i am wrong please specify your Problem

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM