标签:code 根目录 成功 失败 mysq install odi 标题 php
Wamp Server 是一款功能强大的PHP 集成安装环境。
为了节约时间,本次使用 Wamp Server 来进行配置。 wamp 的全部含义就是本篇文章的标题。
Wamp Server v3.0.6 -64bit
Apache: 2.4.23(Win64)
PHP: 5.6.25
MySQL: 5.7.14
Windows10 家庭中文版
配置结果
操作步骤
打开 Apache >> httpd.conf,找到 DocumentRoot,修改路径为存放项目的路径
#DocumentRoot "${INSTALL_DIR}/www"
DocumentRoot "F:/Coding/phpProject"
#<Directory "${INSTALL_DIR}/www/">
<Directory "F:/Coding/phpProject/">
修改 wamp安装目录下 scripts >> config.ini.php
//$wwwDir = $c_installDir.‘/www‘;
$wwwDir = ‘F:/Coding/phpProject‘;
将第一种方案修改的复原,进行下面的修改
配置结果
操作步骤
单击wamp图标 >> Apache >> httpd-vhosts.conf
# DocumentRoot E:/wamp64/www
DocumentRoot F:/Coding/phpProject
# <Directory "E:/wamp64/www/">
<Directory "F:/Coding/phpProject/">
重新启动服务
修改 wamp 安装目录下 wampmanager.ini 和 wampmanager.tpl
;Type: item; Caption: "www directory"; Action: shellexecute; FileName: "E:/wamp64/www"; Glyph: 2
Type: item; Caption: "www directory"; Action: shellexecute; FileName: "F:/Coding/phpProject"; Glyph: 2
;Type: item; Caption: "${w_wwwDirectory}"; Action: shellexecute; FileName: "${wwwDir}"; Glyph: 2
Type: item; Caption: "${w_wwwDirectory}"; Action: shellexecute; FileName: "F:/Coding/phpProject"; Glyph: 2
重启服务不起作用,一定要退出软件重新打开
标签:code 根目录 成功 失败 mysq install odi 标题 php
原文地址:https://www.cnblogs.com/thethomason/p/9734715.html