网站地图    收藏   

主页 > 系统 > apache教程 >

Apache为mysql以及自己的项目设置虚拟路径|Options

来源:自学PHP网    时间:2014-10-14 00:06 作者: 阅读:

[导读] ...

1.apache2.2confhttpd.conf中释放:

   Include conf/extra/httpd-vhosts.conf(去掉前面的#)

2.httpd.conf中增加

    <Directory "E:/work/test">     #项目文件夹DWM目录,注意不要使用中文定义目录与文件夹

    #

    # Possible values for the Options directive are "None", "All",

    # or any combination of:

    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews

    #

    # Note that "MultiViews" must be named *explicitly* --- "Options All"

    # doesn't give it to you.

    #

    # The Options directive is both complicated and important.  Please see

    # http://httpd.apache.org/docs/2.2/mod/core.html#options

    # for more information.

    #

    Options FollowSymLinks    

    #

    # AllowOverride controls what directives may be placed in .htaccess files.

    # It can be "All", "None", or any combination of the keywords:

    #   Options FileInfo AuthConfig Limit

    #

    AllowOverride None

    #

    # Controls who can get stuff from this server.

    #

    Order allow,deny

    Allow from all

   </Directory>

   <Directory "C:/PHPMyAdmin">     #phpMyAdmin的安装路径

    #

    #

    # Possible values for the Options directive are "None", "All",

    # or any combination of:

    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews

    #

    # Note that "MultiViews" must be named *explicitly* --- "Options All"

    # doesn't give it to you.

    #

    # The Options directive is both complicated and important.  Please see

    # http://httpd.apache.org/docs/2.2/mod/core.html#options

    # for more information.

    #

    Options Indexes FollowSymLinks

    #

    # AllowOverride controls what directives may be placed in .htaccess files.

    # It can be "All", "None", or any combination of the keywords:

    #   Options FileInfo AuthConfig Limit

    #

    AllowOverride None

    #

    # Controls who can get stuff from this server.

    #

    Order allow,deny

    Allow from all

   </Directory>

 3.在文件Apache2.2confextrahttpd-vhosts.conf中增加:

    <VirtualHost *:80>   #放在第一个

        ServerAdmin webmaster@dummy-host2.ies.inventec

        DocumentRoot "D:worktest"

        ServerName test

        ErrorLog "logs/dummy-host2.ies.inventec-error.log"

        CustomLog "logs/dummy-host2.ies.inventec-access.log" common
"Apache为mysql以及自己的项目设置虚拟路径"由第二电脑网原创提供,转载请注明:http://www.002pc.com/master/College/Server/Apache/17874.html

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论