thinkphp之wampserver安装

1.如何修改www目录
  打开httpd.conf(wamp\bin\apache\Apache2.4.4\conf):

  把DocumentRoot "c:/wamp/www" 修改为 DocumentRoot "E:/php/www"
  打开/scripts/config.inc

  把$wwwDir = xxx'xxxx' 修改为 $wwwDir = 'E:/php/www';
2.创建站点
  1. apache -> alias directories -> add alias
  2. apache -> alias directories -> 站点名称 -> 编辑别名
3.IP地址方式访问(You don't have permission to access /tp on this server.)
  1.httpd.conf:

    注释掉<Directory "D:/Program Files/wamp/www"># Deny from all</directories>
    或在尾部添加Allow from 192.168.1.8
  2.Edit alias:

    同上
注意事项:
  1.www所在目录不能使用中文路径,否则wamp无法启动

你可能感兴趣的:(thinkphp)