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

xampp 虚拟目录配置

2016-08-07 09:20 288 查看
配置文件在apache\conf\extra\httpd-vhosts.conf

<VirtualHost 域名:端口号 >

    ServerAdmin webmaster@域名

    RewriteEngine On

    DocumentRoot "目录"

    ServerName 域名

    <Directory "目录">

        Options Indexes FollowSymLinks Includes ExecCGI

        AllowOverride All

        Order Allow,Deny

        Allow from all

    </Directory>

</VirtualHost>

例如:

<VirtualHost localhost:80>

    ServerAdmin webmaster@nie.a.com

    RewriteEngine On

    DocumentRoot "E:/xampp/htdocs/jsx/"

    ServerName nie.a.com

    <Directory "E:/xampp/htdocs/jsx/">

        Options Indexes FollowSymLinks Includes ExecCGI

        AllowOverride All

        Order Allow,Deny

        Allow from all

    </Directory>

</VirtualHost>

邢台招聘 http://www.jinshixun.com/quanzhi/ kk06
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
相关文章推荐