您的位置:首页 > 运维架构 > Apache

apache 修改 把根目录指向项目某个目录下

2015-03-27 16:09 190 查看
<Directory "D:/wamp/www/projectname/filename">

Options Indexes FollowSymLinks

AllowOverride all

    Order Deny,Allow

    Deny from none

    Allow from all

</Directory>

 NameVirtualHost 127.0.0.1:80

<VirtualHost adm.xxxx.com:80>

    DocumentRoot D:/wamp/www/projectname/filename

    ServerName adm.xxxx.com

    ServerAlias adm.xxxx.com

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