Plop Forum

General Category => Sitemap generator, other tools => Topic started by: xray77 on March 19, 2016, 14:34:24 PM

Title: PHP Sitemap - Skip Parameters
Post by: xray77 on March 19, 2016, 14:34:24 PM
Hello,

how can relative links add to $skip ?

Example, don't need in Sitemap links with parameters like

?sortby= (or some session-id's)

http://xyz.com/file.php
and also
http://xyz.com/file.php?sortby=

So I need at $skip array a relative URLs. If so, I can include parts of the url like "badwords"
Is there any placeholder possible like %:

    $skip = array (
"%?filter=&brands=",
                  );

Title: Re: PHP Sitemap - Skip Parameters
Post by: Elmar on March 24, 2016, 07:28:27 AM
Hello,

example for "sortby=":

in the file sitemap-1.0.php insert at line 163


     if (strpos ($next_url, "sortby=") !== false) $ignore = true;



Best regards
Elmar
Title: Re: PHP Sitemap - Skip Parameters
Post by: xray77 on March 25, 2016, 14:21:24 PM
Thanks  ;)