Blogger Information
Blog 5
fans 0
comment 0
visits 4037
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
搭建真实的运行环境2019.4.22
三生石的博客
Original
908 people have browsed it

1、搭建真实运行环境步骤

①先下载phpstudy软件

②按照安装步骤进行phpstudy安装,安装后启动服务,点击《其它选项菜单》里面的《My HomePage》选项,正常显示,说明安装成功

2、创建本地访问目录和域名

①打开phpstudy,点击《其它选项菜单》里面的《网站根目录》选项,创建一个命名为html的文件夹

②打开PHPstudy,《其它选项菜单》里面的《站点域名管理》选项,在窗口进行输入:

网站域名:html.io

网站目录:点击《打开》按钮,选择创建的html文件夹目录(D:\phpStudy\PHPTutorial\WWW\html)

第二域名:www.html.io

网站端口80(不填写会默认端口80)

点击《新增》按钮,然后点击《保存设置并生成配置文件》按钮

最后点击《其它选项菜单》里面的《打开host》选项,按照127.0.0.1 localhost格式,添加一条127.0.0.1 html.io,然后phpstud会重启

3、http解释

HTTP协议是Hyper Text Transfer Protocol(超文本传输协议)的缩写,是用于从万维网(WWW:World Wide Web )服务器传输超文本到本地浏览器的传送协议。

4、html解释

超文本标记语言(Hyper Text Markup Language),标准通用标记语言下的一个应用。HTML 不是一种编程语言,而是一种标记语言 (markup language),是网页制作所必备的

html基本结构:

<html>

<head><title>网页标题</title></head>

<body>网页内容</body>

</html>

备注:

<html>它是文件的开头;而</html>,则表示该文件的结尾,它们是超文本标记语言文件的开始标记和结尾标记。

<head></head>;这2个标记符分别表示头部信息的开始和结尾。头部中包含的标记是页面的标题、序言、说明等内容,它本身不作为内容来显示,但影响网页显示的效果。(给搜索引擎看的)

<body></body>;网页中显示的实际内容均包含在这2个正文标记符之间。正文标记符又称为实体标记。(给用户看的)

Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post