Homepage-Support.com

sh404SEF für Joomla konfigurieren
  

Das ist die Fortsetzung des Artikels " sh404SEF für Joomla installieren". Nach einer erfolgreichen Installation machen wir uns nun an die Konfiguration.

Wir befinden uns hier: "Komponenten" => "sh404SEF"

Rechts in der Mitte siehst du einen blauen Infobalken, der folgenden Text enthält:

Hier klicken für erweiterte Anzeige (alle Parameter)

Folge der Anweisung, klicke. ;)

Jetzt wähle links oben "Konfiguration" aus. Ganz oben kannst du sh404SEF aktivieren.
In den verschiedenen Einstellungen kannst du dich etwas umschauen. Zum Beispiel kannst du auswählen, dass für die URLs der Titel Alias anstatt des Original-Titels verwendet wird. So kannst du die beiden varieren und für die URL zum Beispiel noch ein Wort einfügen, dass für Suchmaschinen interessant sein kann, sich aber im Titel nicht gut macht.



 

Nun gehe zu "Plugins". Hier kannst du "Bereich anzeigen" und "Kategorie anzeigen" auf Ja stellen. So haben wir es auch hier gehandhabt. Wenn du die Namen der Bereiche und Kategorien klug gewählt hast, kannst du wieder wertvolle Punkte bei Suchmaschinen sammeln.

Jetzt klicke auf Erweitert. Unter "Erweiterte Konfiguration" und dem Unterpunkt "Rewrite Modus" wähle Mit .htaccess (mod_rewrite) aus. (siehe Bild) 

Jetzt öffne wiederum mit dem FTP-Programm deiner Wahl die .htaccess und suche folgenden Abschnitt:

########## 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} !-f
RewriteCond %{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

 

Ersetze ihn mit folgendem Code:

########## 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} !-f
#RewriteCond %{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

 

Nun sollte alles funktionieren.