PHP code example of lucacri / laravelsimplesitemap

1. Go to this page and download the library: Download lucacri/laravelsimplesitemap library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

lucacri / laravelsimplesitemap example snippets


return [
    /*
     * Storage disk and path where to save the sitemap
     *
     */
    'save' => [
        'disk' => 'public',
        'path' => 'sitemap.xml'
    ],
    /*
     * The URL where your sitemap will be accessible.
     * This value will be used to inform Google of the changed sitemap
     *
     */
    'sitemap_url' => 'http://example.com/sitemap.xml',

    /*
    * An array of URLs to 
bash
php artisan vendor:publish --tag="laravelsimplesitemap-migrations"
php artisan migrate
bash
php artisan vendor:publish --tag="laravelsimplesitemap-config"
bash
php artisan vendor:publish --tag="laravelsimplesitemap-views"
shell
php artisan simplesitemap:create --ping-google