Apache mod_rewrite Modul

Hallo,
ich bin Neuling hier und brauch Hilfe!!!
Ich habe nach meinem Seitenabsturz den neuen Shop 4.4 aufgespielt.
Nun bekomme ich beim setup zwei Fehlermeldungen:

Apache mod_rewrite Modul und Dateizugriffsrechte

Die Dateizugriffsrechte habe ich 777 gesetzt und keine Veränderung?
und htaccess Datei sieht so aus:

<IfModule mod_rewrite.c> 

AddType x-mapp-php5 .php 
AddHandler x-mapp-php5 .php 

Options +FollowSymLinks 
RewriteBase /led-shop/ 
RewriteEngine On 
RewriteCond %{REQUEST_URI} !(/core/|/export/|/modules/|/out/|/setup/|/tmp/|/views/) 
RewriteRule admin/test.php$ admin/test.php?mod_rewrite=1 

RewriteCond %{REQUEST_URI} !(/admin/|/core/|/export/|/modules/|/out/|/setup/|/tmp/|/views/) 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule !(.html|/|.jpg|.css|.pdf|.doc|.gif|.png|.js)$ %{REQUEST_URI}/ [R=301,L] 

RewriteCond %{REQUEST_URI} !(/admin/|/core/|/export/|/modules/|/out/|/setup/|/tmp/|/views/) 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule (.html|/)$ oxseo.php 


</IfModule> 

# disabling log file access from outside 
<FilesMatch "(EXCEPTION_LOG\.txt|\.log$|\.tpl$)"> 
order allow,deny 
deny from all 
</FilesMatch> 

Options -Indexes  

ich habe das Forum durchsucht aber nichts gefunden???
Bin mit meinem Latein am ende.
Für Hilfe bin ich Dankbar!
Gruß arndt

Die htaccess ist aber nicht von der 4.4.

Übertrage die PHP5 Einträge und die RewriteBase in die htaccess aus dem Installationspaket und lade sie auf deinen Webspace.

habe ich gemacht sie sieht jetzt so aus

<IfModule mod_rewrite.c>

Options +FollowSymLinks
RewriteEngine On
RewriteBase /led-shop/

RewriteCond %{REQUEST_URI} oxseo\.php$
RewriteCond %{QUERY_STRING} mod_rewrite_module_is=off
RewriteRule oxseo\.php$ oxseo.php?mod_rewrite_module_is=on [L]

RewriteCond %{REQUEST_URI} !(\/admin\/|\/core\/|\/export\/|\/modules\/|\/out\/|\/setup\/|\/tmp\/|\/views\/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !(\.html|\/|\.jpg|\.css|\.pdf|\.doc|\.gif|\.png|\.js)$ %{REQUEST_URI}/ [R=301,L]

RewriteCond %{REQUEST_URI} !(\/admin\/|\/core\/|\/export\/|\/modules\/|\/out\/|\/setup\/|\/tmp\/|\/views\/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (\.html|\/)$ oxseo.php


</IfModule>

# disabling log file access from outside
<FilesMatch "(EXCEPTION_LOG\.txt|\.log$|\.tpl$)">
order allow,deny
deny from all
</FilesMatch>

Options -Indexes
DirectoryIndex index.php index.html

AddType x-mapp-php5 .php

immer noch das gleiche???

gruß arndt