您的位置:首页 > 编程语言 > PHP开发

APMServ修改php默认目录

2012-10-11 15:17 176 查看


步骤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

生效了。。。。。。。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: