1.安装最新版地址
安装之后的界面:
2.根据网站需求选型
一般我们采用apache+mysql+php
的练习开发模式
那么我们首先启动apache
服务
在phpstudy界面,网站里有本地测试网站的详细信息:
此时浏览器输入:
http://localhost/
可以看到php站点已经新建成功了!!!
3.查看站点目录
index.html是网站的主页面,我们尝试修改它:(修改为如下代码)
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>我的一个php网站</title> </head> <body> <h1>你好,PHP!</h1> </body> </html>
此时再刷新localhost页面,发现网站已经如期的发生了变化: