Apache:如何基于服务器(.htaccess)执行条件需求?

时间:2011-07-19 17:28:50

标签: apache .htaccess conditional require

我的Apache生锈了。

如果两台服务器 foo bar ,请使用相同的 .htaccess 文件,该文件使用require group或{{来限制用户1}},你如何根据服务器的要求?我不认为你在这里使用RewriteCond,但我忘了。


寻找类似的东西:

require user

1 个答案:

答案 0 :(得分:0)

如此处评论:http://www.gossamer-threads.com/lists/modperl/modperl/93036,我只能找到一个Mod_Perl替代方案,但我不想依赖它,如果将来关闭mod_perl:

BEGIN 
{ 
    if (exists $ENV{MOD_PERL}) 
    { 
        require Apache::Constants; 
        import Apache::Constants qw(:common :http); 
    } 
}