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



我的Apache生锈了

如果两个服务器foobar,使用相同的。htaccess文件限制用户使用require grouprequire user,您如何基于服务器的需求?我想你这里没有使用RewriteCond,但是我忘了。


查找如下内容:

# if foo.com
require group foo 
# if bar.com
require group bar

正如这里所评论的: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); 
    } 
} 

相关内容

  • 没有找到相关文章

最新更新