yakamara / redaxo_yrewrite

A multidomain URL rewrite engine for REDAXO
MIT License
56 stars 36 forks source link

Seo Option 'noindex,follow' bei der Funktion getTags() #499

Closed georgkaser closed 1 year ago

georgkaser commented 2 years ago

Wird in dieser Funktion nicht berücksichtigt: https://github.com/yakamara/redaxo_yrewrite/blob/fec4223026e8f326ab35a7567cfcddaa718f214e/lib/yrewrite/seo.php#L105

        $content = 'noindex, nofollow';
        if (1 == $index || (0 == $index && $this->article->isOnline())) {
            $content = 'index, follow';
        } else if (2 == $index) {
            $content = 'noindex, follow';
        }