In schema of SEO addon there are certain rules of adding noindex in certain URLs. In Indexation.php file in schemas/seo
Like so:
'auth.login_form' => array(
'noindex' => true
),
Now, if I want to add noindex into other parameters like:
example.com/abc.pl?sale=1
or
example.com/abc.pl?subcat=Y
I should just add:
'subcats=' => array(
'noindex' => true
),
and
'sale=' => array(
'noindex' => true
),
Or doesnt work like that?