set noindex in htaccess

#1
ive tried setting no index in htaccess file but nothing seems to work, even testing with "Header set X-Debug-Check" does not return in header response.

<IfModule mod_headers.c>
RewriteRule .* - [E=X-Robots-Tag:noindex]
</IfModule>


<IfModule mod_headers.c>
Header set X-Robots-Tag "noindex, nofollow"
</IfModule>


<IfModule mod_headers.c>
Header set X-Debug-Check "htaccess is working"
</IfModule>
 
Top