当前位置: 代码迷 >> PHP >> APMServ批改php默认目录
  详细解决方案

APMServ批改php默认目录

热度:83   发布时间:2012-10-15 09:45:24.0
APMServ修改php默认目录

步骤1:点击Appache设置


步骤2:需要修改的地方(httpd.cof)

DocumentRoot "E:/www/aaa"

<Directory "E:/www/aaa">

NameVirtualHost *:8080
<VirtualHost *:8080>
 ServerName *
 DocumentRoot "E:/www/aaa"
<Directory "E:/www/aaa"> 
 Options FollowSymLinks IncludesNOEXEC Indexes
 DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml
 AllowOverride None 
 Order Deny,Allow 
 Allow from all 
</Directory>
</VirtualHost>

步骤3:重启Appache


生效了。。。。。。。