You have friendly competitor. My homepage for my top website with 8 millions visitor is killed 7 times the last month with Fake Dmca. Now i stop all my network in movie niche.
I can only say thank you for giving up from that 8 million visitors. In this business you can never count only on one website, why not make 10 new websites when 1 go down, competitors are never friendly, every day i got bad seo, ddos, dmca, sql injection and so on but after many years im still here, some months are really bad, some months are nice but i never give up.
Thanks,
Can you tell me SEO progress from new site to high traffic site?
How can you get index quickly from GG? I try but Google don't index so much
Okay so because i allready have database from old site and just converted some things so i can use it on new site i have around 60k movies and episodes. So because i said that this time i will try to work only on 6 pages i turn on in public only 1 page for now and it's allready 9 days old and have around 2k traffic last 3 days.
Analytics.
For fast indexing i try methods like instant links and many many other similar but without success, so i made my own method which index over 100k links for 14 days and It's very simple.
But first let me tell you full story how i got the idea. I have website that is nearly 10 years old, and that was my first site that i made which brings me 200 USD per month back then (site was for sport betting predictions) i work with this 1 year before i found other money making source that makes me lot more than that and completely stop working on that site. But because i was so grateful to this site i never let domain to expire and now this site have very big domain authority.
So one day i start making seo for one of my sites and i get idea to make some backlink on that sport betting site even if its completely different niche. After few days when i check backlink indexing i realise that first backlink indexed is from that site.
So what i make :
Step 1 : export all links from my sitemap from page that want to "fast index"
Step 2 : Open new text file doc (on sport betting website file manager public_html), which i named Links.txt and here i insert all links that i export 1 link 1 row.
Step 3 : Open New Text file doc (on same place) named indexer.php and insert code (look down) inside.
Step 4 : Open Webmaster (for sport betting website) and in index url insert
https://sport-betting-website.com/indexer.php
The point : When i navigate google to indexer.php the algorithm automatically catch all links inside, because my site is 10 years online i think google gives some kind of advantage before younger sites and index links much faster.
Code:
<?php
$data = file_get_contents("links.txt");
$lines = explode("\n" , $data);
?>
<html>
<head>
<title>Links</title>
<meta name=”robots” content=”index,follow”>
</head>
<body>
<h1>Links</h1>
<p>
<?php foreach($lines as $link){
if(strlen($link) > 5){
?>
<a href="<?php echo $link; ?>"><?php echo $link; ?></a></br>
<?php }}?>
</p>
</body>
</html>