spirit77 Posted July 8, 2011 Report Share Posted July 8, 2011 Hallo, ich komme mit dem Mod Rewrite URL nicht weiter. Der Shop funktioniert nur richtig wenn ich die Mod Rewrite URL ausschalte. Hier meine htaccess: ---------------------------------------------------------------- # RewriteEngine on # RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php DirectoryIndex index.php RewriteEngine on RewriteBase / RewriteCond %{REQUEST_URI} !^/media/ RewriteCond %{REQUEST_URI} !^/extAdmin/ RewriteCond %{REQUEST_URI} !^/skin/ RewriteCond %{REQUEST_URI} !^/js/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule .* index.php ------------------------------------------------------------------ Mod Rewrite ist auf dem Server installiert, hier der Link zur php-info. Hat jemand eine Idee? Vielen Dank vorab Link to comment Share on other sites More sharing options...
Kultklamotte Posted January 14, 2014 Report Share Posted January 14, 2014 Hallo, bist du immer noch bei 1und1? Wie ist deine aktuelle htaccess? Link to comment Share on other sites More sharing options...
spirit77 Posted January 14, 2014 Author Report Share Posted January 14, 2014 Bin noch bei 1und1. Hier meine htaccess # RewriteEngine on # RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php DirectoryIndex index.php <IfModule mod_rewrite.c> SetEnv HTTP_MOD_REWRITE On RewriteEngine on RewriteBase / RewriteCond %{HTTP_HOST} !^www. [NC] RewriteCond %{HTTP_HOST} !^$ RewriteRule ^(.*) http://www.%{HTTP_HOST}/$1 [R=301] RewriteCond %{REQUEST_URI} !^/media/ RewriteCond %{REQUEST_URI} !^/extAdmin/ RewriteCond %{REQUEST_URI} !^/skin/ RewriteCond %{REQUEST_URI} !^/js/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule .* index.php </IfModule> <IfModule mod_expires.c> ExpiresActive On ExpiresDefault "access plus 1 seconds" ExpiresByType image/x-icon "access plus 2692000 seconds" ExpiresByType image/jpeg "access plus 2692000 seconds" ExpiresByType image/png "access plus 2692000 seconds" ExpiresByType image/gif "access plus 2692000 seconds" ExpiresByType application/x-shockwave-flash "access plus 2692000 seconds" ExpiresByType text/css "access plus 2692000 seconds" ExpiresByType text/javascript "access plus 2692000 seconds" ExpiresByType application/x-javascript "access plus 2692000 seconds" </IfModule> <IfModule mod_headers.c> <FilesMatch "\\.(ico|jpe?g|png|gif|swf|css|js)$"> Header set Cache-Control "max-age=2692000, public" </FilesMatch> Header unset ETag Header unset Last-Modified </IfModule> Link to comment Share on other sites More sharing options...
Kultklamotte Posted January 14, 2014 Report Share Posted January 14, 2014 Hmm, klappt nicht. Ich hab die 4.1er Version aufgesetzt, die htaccess geschrieben gehabt. Alles lief super und ohne Probleme. Nun habe ich vorhin den xt_banktransfer plugin getauscht mit der aktuellen Version und seitdem bekomm ich nur noch die Startseite zu sehen. Sowie ich etwas anklicke, bekomm ich n 500er Error... :-/ Hat jemand einen Rat? Es ist ein 1&1 Managed Server. Link to comment Share on other sites More sharing options...
spirit77 Posted January 15, 2014 Author Report Share Posted January 15, 2014 Versuch mal die PHP Version auf deinem Server einzustellen, oder einen entsprechenden Hinweis in die htaccess zu schreiben. Ich habe nämlich jetzt festgetsellt, als ich die PHP-Version auf 5.4 umgestellt habe, dass der Shop nicht mehr geht. Ich habe die htacces dann un diesen Eintrag erweitert, so dass die PHP-Version 5.5 geladen wird, dann lief er wieder: AddType x-mapp-php5 .php AddHandler x-mapp-php5 .php Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.