+ Antworten
Seite 1 von 2 1 2 LetzteLetzte
Ergebnis 1 bis 10 von 18

Thema: SEF (bzw. mod_rewrite) konkret bei 1und1 - wer hats geschafft?

  1. #1
    Neu an Board
    Registriert seit
    21.10.2006
    Ort
    Dresden
    Beiträge
    75
    Bedankte sich
    15
    Erhielt 5 Danksagungen
    in 4 Beiträgen

    Standard SEF (bzw. mod_rewrite) konkret bei 1und1 - wer hats geschafft?

    Bitte steinigt mich nicht - ich hab schon viel gelesen und viele .htaccess Dateien auf meinen Server gespielt - aber keine funktioniert.

    Hat es schon einmal jemand geschafft bei 1und1 mod_rewrite einzuschalten, so dass der SEF funktioniert? Ideal waere es natuerlich wenn ich auch mit OPEN SEF arbeiten koennte. Aber nicht einmal die normale SEF funktioniert. Ich weiss dass es eine Loesung mit der SEF.php gibt - aber die Aenderung im Quelltext nuetzt nichts, bei anderen SEF-Loesungen die mod_rewrite voraussetzen.

    DANKE VORAB - Ich werd noch verrueckt!

    viele Gruesse Herr Kolb
    Geändert von Herr Kolb (23.11.2006 um 14:49 Uhr) Grund: gelöst

  2. #2
    Neu an Board Avatar von SGTusch
    Registriert seit
    15.04.2006
    Ort
    Stralsund
    Alter
    31
    Beiträge
    23
    Bedankte sich
    0
    Erhielt 16 Danksagungen
    in 13 Beiträgen

    Standard

    Moin,

    ich glaub ja langsam das du ein anderes problem mit deinem joomla hast!! Vielleicht noch irgendwelche Fehlermeldungen im Backend oder so?? Weil ich hab dir doch schonmal die nötigen Sachen gepostet und ich habe erst am Wochenende eine HP bei 1und1 so wie beschrieben mit SEF eingerichtet!!
    Kuck mal nach ob andere Fehler vorliegen und poste diese hier rein und wir sehen weiter

    erstmaaaaaa

  3. Erhielt Danksagungen von:


  4. #3
    Neu an Board
    Registriert seit
    21.10.2006
    Ort
    Dresden
    Beiträge
    75
    Bedankte sich
    15
    Erhielt 5 Danksagungen
    in 4 Beiträgen

    Standard

    Hallo SGTusch:

    Danke Dir! Ich habs jetzt wirklich mit Deinem htaccess geschafft. Hier nochmal fuer alle den Code von SGTusch:

    Code:
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*) index.php
    
    
    ### @version $Id: htaccess.txt 4085 2006-06-21 16:03:54Z stingrey $# @package Joomla# @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL# Joomla! is Free Software##  ######################################################  READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE## The line just below this section: 'Options FollowSymLinks' may cause problems# with some server configurations.  It is required for use of mod_rewrite, but may already# be set by your server administrator in a way that dissallows changing it in# your .htaccess file.  If using it causes your server to error out, comment it out (add # to # beginning of line), reload your site in your browser and test your sef url's.  If they work,# it has been set by your server administrator and you do not need it set here. ## Only use one of the two SEF sections that follow.  Lines that can be uncommented# (and thus used) have only one #.  Lines with two #'s should not be uncommented# In the section that you don't use, all lines should start with ### For Standard SEF, use the standard SEF section.  You can comment out# all of the RewriteCond lines and reduce your server's load if you# don't have directories in your root named 'component' or 'content'## If you are using a 3rd Party SEF or the Core SEF solution# uncomment all of the lines in the '3rd Party or Core SEF' section###################################################### #####  SOLVING PROBLEMS WITH COMPONENT URL's that don't work ###### SPECIAL NOTE FOR SMF USERS WHEN SMF IS INTEGRATED AND BRIDGED# OR ANY SITUATION WHERE A COMPONENT's URL's AREN't WORKING## In both the 'Standard SEF', and '3rd Party or Core SEF' sections the line:# RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes### May need to be uncommented.  If you are running your Joomla/Mambo from# a subdirectory the name of the subdirectory will need to be inserted into this# line.  For example, if your Joomla/Mambo is in a subdirectory called '/test/',# change this:# RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes### to this:# RewriteCond %{REQUEST_URI} ^(/test/component/option,com) [NC,OR] ##optional - see notes########################################################  ##  Can be commented out if causes errors, see notes above.Options FollowSymLinks ##  mod_rewrite in use RewriteEngine On  #  Uncomment following line if your webserver's URL#  is not directly related to physical file paths.#  Update Your Joomla/MamboDirectory (just / for root) # RewriteBase /  ########## Begin - Joomla! core SEF Section############# Use this section if using ONLY Joomla! core SEF## ALL (RewriteCond) lines in this section are only required if you actually## have directories named 'content' or 'component' on your server## If you do not have directories with these names, comment them out.#RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-d#RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] 		##optional - see notes##RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$  [NC]RewriteRule ^(content/|component/) index.php########### End - Joomla! core SEF Section   ########## Begin - 3rd Party SEF Section############# Use this section if you are using a 3rd party (Non Joomla! core) SEF extension - e.g. OpenSEF, 404_SEF, 404SEFx, SEF Advance, etc##RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] 		##optional - see notes###RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$  [NC]#RewriteCond %{REQUEST_FILENAME} !-f#RewriteCond %{REQUEST_FILENAME} !-d#RewriteRule (.*) index.php########### End - 3rd Party SEF Section
    Ich habe bei mir folgendes geaendert:

    RewriteRule ^(.*) index.php in: RewriteRule ^(.*) joomlaverzeichnis/index.php - dann ging es! Super!

    Weisst Du ob ich damit auch geruestet bin fuer diverse SEF Erweiterungen? Ich werds mal testen - aber vielleicht hast Du ja schon Erfahrungen. Danke nochmals fuer die schnelle und uneigennuetzige Hilfe!

    Edit: OPEN SEF klappt (zumindest der erste Eindruck!) HURRA!

    Gruss Herr Kolb

  5. Erhielt Danksagungen von:


  6. #4
    Kommt häufiger vorbei
    Registriert seit
    24.11.2005
    Ort
    Alt Mölln
    Beiträge
    296
    Bedankte sich
    0
    Erhielt 68 Danksagungen
    in 65 Beiträgen

    Standard

    Du hättest nur RewriteBase anpassen müssen.

    Bei mir laufen einige Pages mit OpenSEF auf 1und1-Servern

    www.energie-innovation-ltd.de (Version 1.0.11)
    www.ib-jschulz.de (Version 1.0.11)
    www.solar-plan.de (Version 1.0.11)
    www.mb-statik.de (Version 1.0.12)

    Gruß
    Martin
    Sparen kann jeder - man muß es nur wollen!
    Besser wohnen mit Wärmepumpe und Photovoltaik
    http://www.solar-plan.de

  7. #5
    Neu an Board
    Registriert seit
    06.08.2006
    Beiträge
    8
    Bedankte sich
    2
    1 Danksagung in 1 Beitrag

    Standard SEO bei 1und1

    Und jetzt für ALLE die noch SUCHEN!
    SO WIE ICH HEUTE :-)

    BEI 1und1 WICHTIG!!!

    RewriteRule ^(.*) index.php in:
    --------------------------------------------DAS IST WICHTIG!!!
    RewriteRule ^(.*) joomlaverzeichnis/index.php - dann ging es! Super!

    DeineDomain.de ist auf auf Ordner "WURST" bei 1und1 gerutet ...._
    So schreibst DU:
    RewriteRule ^(.*) WURST/index.php

    Cheers!

  8. #6
    Neu an Board
    Registriert seit
    19.02.2009
    Beiträge
    42
    Bedankte sich
    15
    Erhielt 0 Danksagungen
    in 0 Beiträgen

    Standard

    Also ich bekomme es immer noch nicht hin.

    Meine Installation ist zwar im Verzeichnis "v15", aber der Domainname ziegt bei 1und1 da direkt hin also

    http://www.nfv-lüneburg.de zeigt bei 1und1 auf /v15

    dann muss ich doch da nichts weiter angeben, oder?

    Ich habe schon so viele Theards über dieses Thema gelesen, Klappt aber immer noch nicht.
    ----> Danke und Gruß Michael

  9. #7
    Gehört zum Inventar Avatar von albatros
    Registriert seit
    16.08.2006
    Beiträge
    7.794
    Bedankte sich
    1.087
    Erhielt 1.878 Danksagungen
    in 1.736 Beiträgen

    Standard

    Hi,

    hast Du das
    Code:
    RewriteBase /
    in Deiner .htaccess aktiviert?

    hth

    albatros
    1.FAQ 2.SuFu 3.Google
    Hilfestellungen und Lösungen können nur im Forum von allen genutzt werden. Supportanfragen per PN beantworte ich deshalb ab sofort nicht mehr.
    Aufträge werden gegen Entgelt bearbeitet.

  10. #8
    Neu an Board
    Registriert seit
    19.02.2009
    Beiträge
    42
    Bedankte sich
    15
    Erhielt 0 Danksagungen
    in 0 Beiträgen

    Standard

    Ich denke ich habe es. Hier mal meine .access ohne kommentarzeilen.

    Options +FollowSymLinks
    RewriteEngine On
    RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
    RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
    RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
    RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
    RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
    RewriteRule ^(.*)$ index.php [F,L]
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} !^/index.php
    RewriteCond %{REQUEST_URI} (/|\.html|\.htm|\.php\|.feed|\.pdf|\.raw|/[^.]*)$ [NC]
    RewriteRule (.*) index.php
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]

    Fehlt was, oder was falsch? Danke für die schnelle Antwort.

  11. #9
    Neu an Board
    Registriert seit
    01.03.2005
    Beiträge
    41
    Bedankte sich
    5
    Erhielt 0 Danksagungen
    in 0 Beiträgen

    Standard

    Habe das Problem auch, sitze schon ne ganze weile und probiere:
    Kann mir jemand helfen? Joomla liegt im verzeichnis lkwversicherung!

    ##
    # @version $Id: htaccess.txt 13415 2009-11-03 15:53:25Z ian $
    # @package Joomla
    # @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
    # @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
    # Joomla! is Free Software
    ##


    ################################################## ###
    # READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
    #
    # The line just below this section: 'Options +FollowSymLinks' may cause problems
    # with some server configurations. It is required for use of mod_rewrite, but may already
    # be set by your server administrator in a way that dissallows changing it in
    # your .htaccess file. If using it causes your server to error out, comment it out (add # to
    # beginning of line), reload your site in your browser and test your sef url's. If they work,
    # it has been set by your server administrator and you do not need it set here.
    #
    ################################################## ###

    ## Can be commented out if causes errors, see notes above.
    Options +FollowSymLinks

    #
    # mod_rewrite in use

    RewriteEngine On

    ########## Begin - Rewrite rules to block out some common exploits
    ## If you experience problems on your site block out the operations listed below
    ## This attempts to block the most common type of exploit `attempts` to Joomla!
    #
    ## Deny access to extension xml files (uncomment out to activate)
    #<Files ~ "\.xml$">
    #Order allow,deny
    #Deny from all
    #Satisfy all
    #</Files>
    ## End of deny access to extension xml files
    RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
    # Block out any script trying to base64_encode crap to send via URL
    RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
    # Block out any script that includes a ********** tag in URL
    RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
    # Block out any script trying to set a PHP GLOBALS variable via URL
    RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
    # Block out any script trying to modify a _REQUEST variable via URL
    RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
    # Send all blocked request to homepage with 403 Forbidden error!
    RewriteRule ^(.*)$ index.php [F,L]
    #
    ########## End - Rewrite rules to block out some common exploits

    # Uncomment following line if your webserver's URL
    # is not directly related to physical file paths.
    # Update Your Joomla! Directory (just / for root)

    RewriteBase /lkwversicherung/


    ########## Begin - Joomla! core SEF Section
    #
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} !^/index.php
    RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
    RewriteRule .* index.php
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
    #
    ########## End - Joomla! core SEF Section

  12. #10
    Neu an Board
    Registriert seit
    05.05.2010
    Beiträge
    80
    Bedankte sich
    13
    Erhielt 2 Danksagungen
    in 2 Beiträgen

    Standard

    habe auch das Problem, schon längere Zeit, vielleicht mal 1 und 1 anschreiben? Und nachfragen ob Sie das Dinge einschalten ?

+ Antworten
Seite 1 von 2 1 2 LetzteLetzte

Ähnliche Themen

  1. SEF auf 1und1
    Von Breiti im Forum Allgemeine Fragen zu Joomla
    Antworten: 14
    Letzter Beitrag: 23.12.2008, 16:17
  2. OPEN SEF Benutzen
    Von Hulk123 im Forum Allgemeine Fragen zu Joomla
    Antworten: 6
    Letzter Beitrag: 19.12.2007, 15:50
  3. Fragen zur htaccess Datei mit Open sef
    Von Matthias im Forum Allgemeine Fragen zu Joomla
    Antworten: 2
    Letzter Beitrag: 09.05.2007, 10:55
  4. Open Sef Frontpage Problem
    Von pflaume im Forum Joomla Komponenten
    Antworten: 2
    Letzter Beitrag: 19.02.2007, 13:36
  5. Frage zu SEO bzw SEF
    Von tommbutu im Forum Allgemeine Fragen zu Joomla
    Antworten: 7
    Letzter Beitrag: 29.12.2005, 22:39

Lesezeichen

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein