Apache::Htaccess is a Perl module that provides an object-oriented interface to Apache .htaccess files. Currently the ability exists to read and write simple htaccess files.
SYNOPSIS
use Apache::Htaccess;
my $obj = Apache::Htaccess->new("htaccess");
die($Apache::Htaccess::ERROR) if $Apache::Htaccess::ERROR;
$obj->global_requires(@groups);
$obj->add_global_require(@groups);
$obj->directives(CheckSpelling => 'on');
$obj->add_directive(CheckSpelling => 'on');
$obj->requires('admin.cgi',@groups);
$obj->add_require('admin.cgi',@groups);
$obj->save();
die($Apache::Htaccess::ERROR) if $Apache::Htaccess::ERROR;
Product's homepage
Requirements:
· Perl