MyBB.de Forum
Links mit NoFollow konfigurieren - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: MyBB 1.8.x (https://www.mybb.de/forum/forum-87.html)
+--- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-88.html)
+--- Thema: Links mit NoFollow konfigurieren (/thread-33736.html)



Links mit NoFollow konfigurieren - Christoph - 24.09.2016

Hallo!

Ich beziehe mich auf https://www.mybb.de/forum/thread-6085-post-93103.html#pid93103 .
Leider ist dort eine Antwort nicht mehr möglich.

Ist es möglich, auf diese Art und Weise mehrere URLs anzugeben, bei denen das NoFollow nicht gesetzt wird?


RE: Links mit NoFollow konfigurieren - MrBrechreiz - 24.09.2016

Mit einer zusätzlichen elseif() sollte es funktionieren.


RE: Links mit NoFollow konfigurieren - Christoph - 17.02.2017

Die class_parser.php wurd ebei einem Update überschrieben.
Ich habe die Änderungen  aus einem Backup wieder eingespielt.
Leider bleiben alle Links auf Follow.
Davor hat es gut funktioniert.

Folgenden String habe ich drinstehen:

Code:
$nofollow = '';
               if(!empty($this->options['nofollow_on']))
               {
                      $nofollow = " rel=\"nofollow\"";
              }

              /**
                * Alle Webseiten bis auf eine auf nofollow
                */
               if (strstr($url, "domain.de"))
           {
           $link = "<a href=\"$url\" rel=\"follow\">$name</a>";
   }
       else
           {
           $link = "<a href=\"$url\" rel=\"nofollow\" target=\"_blank\">$name</a>";
           }



RE: Links mit NoFollow konfigurieren - SvePu - 17.02.2017

So ist das mit Core Edits Wink - Spass beiseite, probiere mal bitte dieses Plugin:
=> https://community.mybb.com/mods.php?action=view&pid=562


RE: Links mit NoFollow konfigurieren - Christoph - 17.02.2017

Wie lassen sich dann aber festgelegte Domains als DoFollow verlinken?
Das Plugin setzt ja alle externen URLs auf nofollow


RE: Links mit NoFollow konfigurieren - SvePu - 17.02.2017

Das ist richtig - alle externen Domains werden damit auf nofollow gesetzt.

Für die Umsetzung deines Wunsches brächtest du ein Plugin mit einer Whitelist für die entsprechenden Domains.


RE: Links mit NoFollow konfigurieren - Christoph - 19.02.2017

Hast du einen Ansatzpunkt für mich, wie ich eine Whitelist erzeugen könnte?
Zuvor hat das mit der IF-Else Bedingung super geklappt.


RE: Links mit NoFollow konfigurieren - MrBrechreiz - 19.02.2017

Das nofollow ist für die Suchmaschinen. Wieso trägst Du dann nicht einfach die entsprechenden Seiten in die robot.txt ein die nicht verfolgt werden sollen ?


RE: Links mit NoFollow konfigurieren - Christoph - 19.02.2017

Ich möchte zwecks SEO Optimierung nur von mir ausgewählte Webseiten DoFollow haben.