在未占用的端口中运行PHP站点

时间:2018-03-17 15:20:52

标签: php cmd localhost

我在user.passwordSalt = Convert.ToBase64String(salt); 中有一个不同的应用程序运行。如果我通过服务器运行第二个应用程序,它会转储正在运行的应用程序并将其置于此端口中。我需要能够同时运行。理想情况下,在不同的端口:

localhost:8000中的App1运行React / webpack / node app

localhost中的App2:8080运行该站点的PHP版本。

如果有帮助,我使用atom作为我的IDE,内置命令终端。而Apache作为我的本地服务器(分别是Mac和Win中的XAMPP和WAMPP)

1 个答案:

答案 0 :(得分:0)

我找到了这样做的方法,而无需在创建VirtualHosts和使用PHP内置服务器方面做太多工作

步骤1 - 打开XAMPP控制台,然后单击Shell enter image description here

第2步 - CD到$ PATH。例如cd c:\ xampp \ htdocs \ site_folder 第3步 - Type php -S localhost:8080然后按Enter键 enter image description here

步骤4 - 在浏览器中,导航到localhost:8080,它将显示。

步骤5 - 对于第二个网站,打开一个单独的CMD终端并通过选择$ PATH到该网站文件夹并分配不同的端口号(即8000)重复该过程,按Enter键,导航到该localhost:8000 in一个单独的浏览器选项卡或窗口,瞧!现在两个站点都是独立运行的!