How do I run a file on localhost?

前端 未结 7 2128
Happy的楠姐
Happy的楠姐 2020-12-13 06:58

How do I actually run a file on localhost? I know it is working, but how do I run a file on it, and how do I verify that the file is in fact running on localhost?

7条回答
  •  借酒劲吻你
    2020-12-13 07:05

    Localhost is the computer you're using right now. You run things by typing commands at the command prompt and pressing Enter. If you're asking how to run things from your programming environment, then the answer depends on which environment you're using. Most languages have commands with names like system or exec for running external programs. You need to be more specific about what you're actually looking to do, and what obstacles you've encountered while trying to achieve it.

提交回复
热议问题