webreinvent / vaah-indexer
Get Google to Index Your Website Faster
v1.0.2
2018-11-24 09:28 UTC
Requires
- ixudra/curl: ^6.10
This package is not auto-updated.
Last update: 2024-11-24 06:46:16 UTC
README
All In One Laravel Package to get your web pages indexed fast!
How to force Google to index your page fast?
- "Ping" your website
- Post your page url to high traffic sites
- Post status on Social Media
Features
Ping
✅ Ping Service
Social Media
🔲 Facebook Status
🔲 Twitter Status
High Traffic Website
Install
composer require webreinvent/vaah-indexer
Add to your config/app.php file to providers section:
'providers' => [ // ... WebReinvent\VaahIndexer\VaahIndexerServiceProvider::class, ]
If you want to use Indexer
facade, add to same file at the aliases section:
'aliases' => [ // ... 'Indexer' => WebReinvent\VaahIndexer\IndexerFacade::class, ]
Publish with artsian
php artisan vendor:publish --provider="WebReinvent\VaahIndexerServiceProvider"
Publishes a vaah-indexer.php
file to config directory. Add and remove all your ping sites in this file. Be sure to review the ping responses from the ping sites because there are many ping sites and do not all provide a uniform response. Some may require additional parameters.
Usage
Send to all ping services:
$response = Indexer::sendPingToAll($title, $page_url);
To get http status:
$response = Indexer::sendPingToAll($title, $page_url); echo $response->status;
To get response content:
$response = Indexer::sendPingToAll($title, $page_url); echo $response->content;
Further plans
- Add support to post on Facebook, Twitter