我的Apache生锈了
如果两个服务器foo和bar,使用相同的。htaccess文件限制用户使用require group
或require 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);
}
}