How to exclude paginated catgories from SERP?

These pages do help well with crawling, blocking/removing or redirecting them wouldn't be a good choice,
You'll have to set them up with noindex, using htaccess it's just too simple,
Add the code below to do so:
Code:
SetEnvIf Request_URI "*/page/.*" NOINDEXFOLLOW
Header set X-Robots-Tag "noindex, follow" env=REDIRECT_NOINDEXFOLLOW
 
Back
Top