📅  最后修改于: 2023-12-03 15:38:10.145000             🧑  作者: Mango
如果你正在寻找一款便捷的本地服务器软件,XAMPP是一个不错的选择。本文将向你展示如何在XAMPP上创建两个网站。
首先,你需要到 XAMPP 的官网下载最新版本的安装程序(https://www.apachefriends.org/download.html)。
安装 XAMPP 完成后,你需要启动 Apache 和 MySQL 两个服务。
现在,我们将为你展示如何创建第一个网站。
htdocs
目录下创建一个新文件夹,例如:website1
。website1
文件夹下创建一个新文件 index.php
。index.php
文件中写入以下代码:<!DOCTYPE html>
<html>
<head>
<title>My First Website</title>
</head>
<body>
<h1>Hello, World! This is my first website.</h1>
</body>
</html>
http://localhost/website1
,你将看到你的第一个网站。现在,我们将为你展示如何创建第二个网站。
htdocs
目录下创建另一个文件夹 website2
。website2
文件夹下,创建一个新文件 index.php
。index.php
文件中写入以下代码:<!DOCTYPE html>
<html>
<head>
<title>My Second Website</title>
</head>
<body>
<h1>Welcome to my second website!</h1>
</body>
</html>
http://localhost/website2
,你将看到你的第二个网站。恭喜你,你已经成功地在 XAMPP 上创建了两个网站。使用本地服务器软件进行开发,能够帮助你更快地进行开发和测试,也可以减轻服务器的负担。