免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1162 | 回复: 1
打印 上一主题 下一主题

[Web] win32下apache如何设置虚拟目录 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-11-08 15:08 |只看该作者 |倒序浏览
如何设置虚拟目录  或 更改默认的主页空间到其他文件夹
默认配置是否已经打开索引功能?

论坛徽章:
1
技术图书徽章
日期:2013-12-05 23:25:45
2 [报告]
发表于 2004-11-11 08:30 |只看该作者

win32下apache如何设置虚拟目录

<VirtualHost *:80>;
    ServerAdmin webmaster@127.0.0.1
    DocumentRoot /usr/local/www/data/
    ServerName 127.0.0.1
    ErrorLog logs/127.0.0.1-error_log
    CustomLog logs/127.0.0.1-access_log combined
    DirectoryIndex index.htm index.html index.php index.cgi index.pl
    DefaultLanguage zh-CN
    AddDefaultCharset GB2312
   <Directory "/usr/local/www/data/">;
       Options FollowSymLinks
       AllowOverride None
       Order allow,deny
       Allow from all
   </Directory>;
    ScriptAlias /cgi-bin/ "/usr/local/www/cgi-bin/"
<Directory "/usr/local/www/cgi-bin/">;
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>;

php_admin_flag engine on
php_admin_flag safe_mode off
php_admin_value open_basedir none
php_admin_value open_basedir "/usr/local/www/data;/usr/local/tmp/php"

    <Location ~ "/*.jsp|/*/servlet/*">;
        JkUriSet worker ajp13:localhost:8009
    </Location>;
    <Location />;
        MaxConnPerIP 10
        # exempting images from the connection limit is often a good
        # idea if your web page has lots of inline images, since these
        # pages often generate a flurry of concurrent image requests
        NoIPLimit image/*
    </Location>;
    <Location />;
        MaxConnPerIP 1
        # In this case, all MIME types other than audio/mpeg and video*
        # are exempt from the limit check
        OnlyIPLimit text/html
    </Location>;
</VirtualHost>;
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP