Hier habe ich mal einen Auszug aus meiner httpd.conf Datei! ISt der Eintrag so okay? Danke und Gruss
optional cookie-based user tracking
read the documentation before using it!!
Include /etc/apache2/mod_usertrack.conf
configuration of server-generated directory listings
Include /etc/apache2/mod_autoindex-defaults.conf
associate MIME types with filename extensions
TypesConfig /etc/apache2/mime.types
DefaultType text/plain
Include /etc/apache2/mod_mime-defaults.conf
set up (customizable) error responses
Include /etc/apache2/errors.conf
global (server-wide) SSL configuration, that is not specific to
any virtual host
Include /etc/apache2/ssl-global.conf
forbid access to the entire filesystem by default
<Directory />
Options None
AllowOverride All <== HIER!!!!!!!!!!!!!!!!!!!!!!!!
Order deny,allow
Deny from all
</Directory>
use .htaccess files for overriding,
AccessFileName .htaccess
and never show them
<Files ~ "^.ht">
Order allow,deny
Deny from all
</Files>
List of resources to look for when the client requests a directory
DirectoryIndex index.html index.html.var
'Main' server configuration
The directives in this section set up the values used by the 'main'
server, which responds to any requests that aren't handled by a
<VirtualHost> definition. These values also provide defaults for
any <VirtualHost> containers you may define later in the file.
All of these directives may appear inside <VirtualHost> containers,
in which case these default settings will be overridden for the
virtual host being defined.
Include /etc/apache2/default-server.conf