mod_rewrite geht nicht

Hallo, wollte Shopware 4 mal probehalber installieren. Leider hab ich Probleme mit dem mod_rewrite, ist nicht auf “1” bei der Installation. Hier mal meine .htaccess. Har wer nen Tipp. Bin mit den Hinweisen hier im Forum nicht wirklich weiter gekommnen.
RewriteEngine on

RewriteBase /eshop

RewriteRule shopware.dll shopware.php
RewriteRule files/documents/.* engine [NC,L]
RewriteRule backend/media/(.*) media/$1 [NC,L]

RewriteCond %{REQUEST_URI} !(/(engine|files|templates)/)
RewriteCond %{REQUEST_URI} !(/media/(archive|banner|image|music|pdf|unknown|video)/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) shopware.php [PT,L,QSA] </ifmodule># Staging-Rules start #SetEnvIf Host "staging.test.shopware.in" ENV=staging DirectoryIndex index.html DirectoryIndex index.php DirectoryIndex shopware.php # Disables download of configuration<files> Deny from all </files># Enable gzip compression<ifmodule mod_deflate.c> # disable compression on iconset due to loading problems in google chrome on windows SetEnvIfNoCase Request_URI icon-set.css no-gzip dont-vary

AddOutputFilterByType DEFLATE text/html text/xml text/plain text/css text/javascript application/json



ExpiresActive on
ExpiresDefault “access plus 1 month”
FileETag None

Header append Cache-Control “public”
Header unset ETag


php_value memory_limit 128M

php_value max_execution_time 120

php_value upload_max_filesize 20M

php_flag phar.readonly off
php_flag magic_quotes_gpc off
php_flag session.auto_start off
php_flag suhosin.session.cryptua off
php_flag zend.ze1_compatibility_mode off
# AddType x-mapp-php5 .php # AddHandler x-mapp-php5 .php

gibt es niemenaden hier der mir weiterhelfen kann? Vielelicht kann mir jemand ja mal seine .htaccess posten, dann kann ich mal schauen ob es Unterschiede gibt und meine versuchen anzupassen.

Hi, im Install-Verzeichnis gibt es noch eine weitere .htaccess-Datei. Die müsstes du vielleicht auch anpassen: <ifmodule mod_rewrite.c> RewriteEngine On RewriteBase /eshop/install RewriteRule .* - [E=MOD_REWRITE:1] RewriteCond %{REQUEST_URI} !(\/(assets|templates)\/) RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php [QSA,L] </ifmodule>DirectoryIndex index.php Ansonsten einfach ignorieren. Für den Installer wird kein “mod_rewrite” benötigt. :wink: Heiner

1 „Gefällt mir“

… hab den Fehler einfach ignoriert. Jetzt geht Shopware4. DANKE