is there a way to noindex these links?

Catmes

Member
Hi guys,
I look on google search console and get 404 not found error on my website almost every day. It looks like this:
https:// zinghomnay .com/.well-known/assetlinks.json
https:// zinghomnay .com/.well-known/assetlinks.json
https:// zinghomnay .com/.well-known/assetlinks.json , they also have a lot
Is there a way to noindex these types of links? I'm not very familiar with code can anyone guide me how to noindex them?
Thanks to anyone who helped melỗi 404.JPG
 
yes thank you i also know how to do it on robots.txt. But is there a way to insert noindex code bro?
Considering that those are not normal routes for XF... I don't know how much more successful they would be anywhere else.

You could, if using nginx always do a
Code:
location /.well-known/ {
    internal;
    deny all;
    return 403;
    }
and simply block all access to them.
Apparently they are detecting all directories under your root.
 
Last edited:
Considering that those are not normal routes for XF... I don't know how much more successful they would be anywhere else.

You could, if using nginx always do a
Code:
location /.well-known/ {
    internal;
    deny all;
    return 403;
    }
and simply block all access to them.
Apparently they are detecting all directories under your root.
Thank you very much my friend, for your enthusiastic help :D
 
Top Bottom