In the server logs I see Google attempting to crawl wrong URLs like:
which I suspect are caused by some kind of negative SEO, since such links never existed on this website.
Why negative SEO? Because such links generate duplicates and also lead to a waste of crawl budget.
I'm unable to find the originating pages (if any), for they are likely cloaked.
What I have done so far was self-canonicalizing all pages, solving the duplicates issue.
I'm also thinking about ReWriting all
Could you please advise.
/sectionX/pageA.php/pageB.php
which I suspect are caused by some kind of negative SEO, since such links never existed on this website.
Why negative SEO? Because such links generate duplicates and also lead to a waste of crawl budget.
I'm unable to find the originating pages (if any), for they are likely cloaked.
What I have done so far was self-canonicalizing all pages, solving the duplicates issue.
I'm also thinking about ReWriting all
pageA.php/pageB.php
to pageA.php
. This looks like a better solution (301 could make G forget about these links), but I wonder what I might be missing here.Could you please advise.