Shop Hosting
Neuigkeiten
  • Die modified eCommerce Shopsoftware ist kostenlos, aber nicht umsonst.
    Spenden
  • Damit wir die modified eCommerce Shopsoftware auch zukünftig kostenlos anbieten können:
    Spenden
  • Thema: Suchmaschinen freundliche URLs benutzen?

    myerotismo.de

    • Neu im Forum
    • Beiträge: 14
    Suchmaschinen freundliche URLs benutzen?
    am: 17. September 2016, 12:36:06
    Hallo Leute

    Bin mittlerweile am verzweifeln immer wen ich "Suchmaschinen freundliche URLs benutzen" einschalte und
    Speichere kann ich in meinem Shop nicht mehr auf die Kategorien im Frontend zugreifen.

    Komnt folgendes :Not Found

    The requested URL /Young-Fashion:::5187.html was not found on this server.
    htaccess hatte ich nach instal umbenannt.
    In der steht aber nichts weiter drin außer:

       #######################################################################
    #     Diese .htaccess wurde vom STRATO-Webservermanager erstellt      #
    #######################################################################

    mod_gzip_on Yes

    hatte bei Provider angerufen und die sagten die erstellt sich von selber bin bei Strato

    brauch unbedingt Hilfe
    Danke im voraus

    Linkback: https://www.modified-shop.org/forum/index.php?topic=35719.0

    noRiddle (revilonetz)

    • Experte
    • Beiträge: 13.990
    • Geschlecht:
    Re: Suchmaschinen freundliche URLs benutzen?
    Antwort #1 am: 17. September 2016, 13:12:27
    Bei einigen Hostern wird, wenn man irgendwelche Einstellungen für den Webspace vornimmt, die .htaccess einfach komplett überschrieben, was totaler Murks ist.
    • Lade die Original-.htaccess aus dem modified-Paket erneut auf deinen Webspace (nicht vergessen Unterstrich zu entfernen)
    • Trage in die hochgeladene .htaccess oben, z.B. unter Server_signature Off, das ein was in der Strato .htaccess stand (mod_gzip_on Yes)
    • Mache zukünftig keine Einstellungen für deinen Webspace mehr ohne die .htaccess vorher zu sichern.
    • Frage Strato ob sie noch alle Tassen im Schrank haben.

    Gruß,
    noRiddle

    myerotismo.de

    • Neu im Forum
    • Beiträge: 14
    Re: Suchmaschinen freundliche URLs benutzen?
    Antwort #2 am: 17. September 2016, 13:27:47
    Recht herzlichen dank
    werde bei den mahl nachfragen

    myerotismo.de

    • Neu im Forum
    • Beiträge: 14
    Re: Suchmaschinen freundliche URLs benutzen?
    Antwort #3 am: 17. September 2016, 13:38:40
    so habe ich gemacht geht aber auch nicht

    Die Originale sieht so aus

    ##-- $Id: .htaccess 3209 2012-07-12 11:51:11Z gtb-modified $

    ##-- Default charset
    #AddDefaultCharset UTF-8
    AddDefaultCharset ISO-8859-15

    ##-- Disable the server signature
    ServerSignature Off

    ##-- Turn off ETags in HTTP-header (use both directives)
    <IfModule mod_headers.c>
      Header unset ETag
    </IfModule>
    FileETag None

    ##-- When caching of gzipped JS and CSS files is used, enable this setting
    #<IfModule mod_headers.c>
    #  Header set Vary Accept-Encoding
    #</IfModule>

    ##-- when using Provider 1&1 set the following lines to activate PHP5
    #AddType x-mapp-php5 .php
    #AddHandler x-mapp-php5 .php

    # Disable directory browsing (disabled by default as this causes problems on some servers)
    #Options All -Indexes

    ##-- Enable the compression for any type of content
    #<IfModule mod_deflate.c>
    #  <FilesMatch "\\.(js|css|html|htm|php|xml|jpg|jpeg|png|gif)$">
    #    SetOutputFilter DEFLATE
    #  </FilesMatch>
    #</IfModule>

    ##-- Customization of HTTP request and response headers
    <IfModule mod_headers.c>
      <FilesMatch "\\.(ico|jpe?g|png|gif|swf|flv)$">
        Header set Cache-Control "max-age=2592000, public"
      </FilesMatch>
      <FilesMatch "\\.(css)$">
        Header set Cache-Control "max-age=604800, public"
      </FilesMatch>
      <FilesMatch "\\.(js)$">
        Header set Cache-Control "max-age=216000, private"
      </FilesMatch>
      <FilesMatch "\\.(xml|txt)$">
        Header set Cache-Control "max-age=216000, public, must-revalidate"
      </FilesMatch>
      <FilesMatch "\\.(html|htm|php)$">
        Header set Cache-Control "max-age=1, private, must-revalidate"
      </FilesMatch>
    </IfModule>

    ##-- Generation of Expires and Cache-Control HTTP headers
    <IfModule mod_expires.c>
      ExpiresActive On
      ExpiresDefault "access plus 1 seconds"
      ExpiresByType image/gif "access plus 2592000 seconds"
      ExpiresByType image/jpeg "access plus 2592000 seconds"
      ExpiresByType image/png "access plus 2592000 seconds"
      ExpiresByType text/html "access plus 1 seconds"
      ExpiresByType text/css "access plus 604800 seconds"
      ExpiresByType text/javascript "access plus 216000 seconds"
      ExpiresByType application/x-javascript "access plus 216000 seconds"
    </IfModule>

    ##-- Configure php_flags if necessary
    ##-- BEGIN - use IfModule clause if PHP runs in CGI mode, otherwise just uncomment the lines with php_flag...
    #<IfModule mod_php.c>

      ##-- Warn when arguments are passed by reference at function call time (from PHP5 allow_call_time_pass_reference is deprecated)
      #php_flag allow_call_time_pass_reference on

      ##-- Disable transparent sid support PHP-default is off (XTC Session only on first visit)
      #php_flag session.use_trans_sid off

      ##-- set suhosin flags because of errors with attributes (for webhosters with suhosin hardening patch enabled)
      #php_value suhosin.post.max_array_depth 0
      #php_value suhosin.post.max_array_index_length 0
      #php_value suhosin.post.max_vars 0
      #php_value suhosin.request.max_array_depth 0
      #php_value suhosin.request.max_array_index_length 0
      #php_value suhosin.request.max_vars 0

      ##-- set suhosin flags to have unencrypted session data, affecting "whos_online" & "shopping cart" (for webhosters with suhosin hardening patch enabled)patch enabled
      #php_value suhosin.session.encrypt Off
      #php_value suhosin.session.cryptkey ''

    ##-- END - use IfModule clause if PHP runs in CGI mode, otherwise just uncomment the lines with php_flag...
    #</IfModule>

    ##-- Redirect error pages to Sitemap
    ##-- set the correct Path to ErrorDocument
    ErrorDocument 400 /sitemap.html?error=400
    ErrorDocument 401 /sitemap.html?error=401
    ErrorDocument 402 /sitemap.html?error=402
    ErrorDocument 403 /sitemap.html?error=403
    ErrorDocument 404 /sitemap.html?error=404
    ErrorDocument 500 /sitemap.html?error=500

    ##-----------------------------------------
    ##- SEO Shopstat Modul (Hartmut Koenig)
    ##-----------------------------------------
    <IfModule mod_rewrite.c>
      ##-- Initialize and enable rewrite engine
      ##-- Documentation http://httpd.apache.org/docs/misc/rewriteguide.html
      RewriteEngine On

    wo soll das von Strato hin? ich werde wahnsinnig damit und brauche unbedingt hilfe

    noRiddle (revilonetz)

    • Experte
    • Beiträge: 13.990
    • Geschlecht:
    Re: Suchmaschinen freundliche URLs benutzen?
    Antwort #4 am: 17. September 2016, 13:55:06
    Bitte benutze Code-tags wenn du Code postest (für htaccess-Code: auf php klicken und =php in code=php] entfernen).

    Im geposteten Code fehlt ja alles was nach RewriteEngine On kommt.
    Die Original-.htaccess funktioniert definitiv (insofern sie nicht noch _.htaccess heißt).

    Wo der Code aus der Strato-.htaccess hin soll hatte ich bereits geschrieben.

    Im Übrigen vermisse ich bei dir einen gewissen Willen sich vernünftig auszudrücken (Groß-und Kleinschreibung, Kommata, usw.) und Hilfen auch wirklich komplett zu lesen, was auf eine gewisse Gleichgültigkeit schließen lässt, nach dem Motto, ich poste mal ein paar bruchstückhafte Sätze und Irgendeiner wird mir schon helfen.
    Deshalb ist dies mein letzter Hinweis an dieser Stelle.

    noRiddle

    myerotismo.de

    • Neu im Forum
    • Beiträge: 14
    Re: Suchmaschinen freundliche URLs benutzen?
    Antwort #5 am: 17. September 2016, 14:04:54
    Danke für die Ermahnung

    Sollte nicht so rüberkommen sitze schon seit gester Abend an dem und anderen Problemen,
    sohlte aber keine ausrede sein .
    Bin hier für jede Hilfe sehr dankbar!.

    myerotismo.de

    • Neu im Forum
    • Beiträge: 14
    Re: Suchmaschinen freundliche URLs benutzen?
    Antwort #6 am: 17. September 2016, 15:08:02
    Also nochmal fielen Dank es hat endlich geklappt
    5 Antworten
    4205 Aufrufe
    01. November 2011, 03:23:45 von Gradler
    3 Antworten
    2642 Aufrufe
    02. Mai 2010, 13:58:24 von Tomcraft
    11 Antworten
    6214 Aufrufe
    14. Januar 2011, 13:07:59 von mido
    2 Antworten
    3022 Aufrufe
    08. Mai 2009, 17:02:46 von MarcelSimone
               
    anything