Integrating & Submit Your Sitemap

* 12345 - Your Website Identifier.

Your Sitemap will be updated automatically to the chosen schedule

Integration with your website

Sitemap URL will be located and updated in your Domain. Download our script from this link: https://www.mysitemapgenerator.com/sources/sitemap.v2.zip Open it and set the value of the '_USECHANNEL' constant equal to the ID of your site: 12345*
define('_USECHANNEL',12345);
Upload the script in the root directory of your Website. Make sure that the cache file (which is specified in the '_CACHEFILE' constant) is set to write permissions (cmode 0777).
define('_CACHEFILE','./file.tmp');
Do not forget that in your robots.txt file to add instructions:
Sitemap: http://yoursite.com/sitemap.php
If you want the Sitemap to be accessible via a link to a file with the .xml extension (http://yoursite.com/sitemap.xml), add the following to your .htaccess file:
RewriteEngine on
RewriteBase /
RewriteRule ^sitemap.xml$ /sitemap.php [L]
For compatibility with the configuration of the current .htaccess file, the entries should be added before other RewriteRule directives or at the beginning of the file.