php(二)使用thinkphp搭建项目
1、创建项目根目录,配置虚拟主机
1.1、创建项目根目录phpDemo01,将thinkphp_3.2.3_full.zip压缩包中ThinkPHP文件夹复制到项目根目录phpDemo01中。
1.2、主机名localhost,端口80,站点目录设置为项目根目录phpDemo01
配置文件httpd.conf
在hosts文件配置:
重启apache服务:win10系统,搜索"服务"
1.3、测试
浏览器输入http://web.abc123.com/,OK。将我上一篇博客 php(一)搭建php开发环境 的a.php文件复制到项目根目录phpDemo01中。浏览器输入http://web.abc123.com/a.php,测试OK。
2、创建基于thinkphp的项目
在项目根目录phpDemo01下面创建子项目helloworldProject,新建index.php
<?php //入口文件 include("../ThinkPHP/ThinkPHP.php");
浏览器访问项目helloworldProject的index.php后会自动创建Common、Home、Runtime三个文件夹。
3、新建UserController.class.php
浏览器访问:
http://web.abc123.com/helloworldProject/index.php?m=Home&c=user&a=add
http://web.abc123.com/helloworldProject/index.php?c=user&a=add
http://web.abc123.com/helloworldProject/index.php/Home/user/add
posted on 2019-04-15 23:48 wenbin_ouyang 阅读(1469) 评论(0) 编辑 收藏 举报