It can only be changed wihtin the
http.conf of the apache server.
(the http.con is the configuration-file for the server! )
You need root-acces to your web-server! Example:
If your mambo is installed in the webroot (no subdirectory) and if this is /var/www looking for
<Directory /var/www>
...
...
</Directory> and change it to (or add it to the end of the configuration file):
<Directory /var/www>
...
...
AllowOverride All
</Directory>
"..." means some other configurations, if exists, do not add ... anywhere!
here is a little Article from the Apache Homepage what the AllowOverride Directive does:
AllowOverride directive Syntax: AllowOverride All|None|
directive-type [
directive-type] ...
Default: AllowOverride All
Context: directory
Status: core When the server finds an .htaccess file (as specified by
AccessFileName) it needs to know which directives declared in that file can override earlier access information.
Note: AllowOverride is only valid in <Directory> sections, not in <Location> or <Files> sections, as implied by the
Context section above.
When this directive is set to None, then .htaccess files are completely ignored. In this case, the server will not even attempt to read .htaccess files in the filesystem.
When this directive is set to All, then any directive which has the .htaccess
Context is allowed in .htaccess files.
The
directive-type can be one of the following groupings of directives.
AuthConfig Allow use of the authorization directives (
AuthDBMGroupFile,
AuthDBMUserFile,
AuthGroupFile,
AuthName,
AuthDigestRealmSeed,
AuthType,
AuthUserFile,
Require,
etc.).FileInfo Allow use of the directives controlling document types (
AddEncoding,
AddLanguage,
AddType,
DefaultType,
ErrorDocument,
LanguagePriority,
etc.).Indexes Allow use of the directives controlling directory indexing (
AddDescription,
AddIcon,
AddIconByEncoding,
AddIconByType,
DefaultIcon,
DirectoryIndex,
FancyIndexing,
HeaderName,
IndexIgnore,
IndexOptions,
ReadmeName,
etc.).Limit Allow use of the directives controlling host access (
Allow,
Deny and
Order).Options Allow use of the directives controlling specific directory features (
Options and
XBitHack). Example:
AllowOverride AuthConfig Indexes
Hope this helps
Greetings
Sascha