美文网首页
【wampserver】【转】WampServer localh

【wampserver】【转】WampServer localh

作者: ytlm | 来源:发表于2016-05-14 10:48 被阅读549次

    原文链接

    在安装目录中找到

    \wamp\bin\apache\Apache2.2.17\conf\extra\httpd-autoindex.conf

    打开进行修改,将一下

    Alias /icons/ “C:/Dev/Projets/WampServer2-64b/install_files_wampserver2/bin/apache/Apache2.2.17/icons/”
    <Directory “C:/Dev/Projets/WampServer2- 64b/install_files_wampserver2/bin/apache/Apache2.2.17/icons”>
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>

    修改为

    Alias /icons/ “icons/”
    <Directory “icons”>
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>

    上面用的相对目录,

    因为在 httpd.conf 里面设置了
    ServerRoot “D:/wamp/bin/apache/apache2.2.17”
    或者用绝对目录也行.
    \wamp\bin\apache\Apache2.2.17\icons

    相关文章

      网友评论

          本文标题:【wampserver】【转】WampServer localh

          本文链接:https://www.haomeiwen.com/subject/xxbmrttx.html