サイトマップだらけ

 サイトマップ のリンクが

http://*******/index.php  なら    index.php?do=sitemap
http://*******/home1.php  なら  home1.php?do=sitemap
http://*******/home2.php  なら    home2.php?do=sitemap
http://*******/home3.php  なら    home3.php?do=sitemap

と、なるので、

 http://*******/?do=sitemap  の1つにする。SEO的にも良い筈。沢山のサイトマップを作っているのが意図的なのか、バグなのか不明。バグかなァー

一応、本家に提案 http://www.lightneasy.org/punbb/viewtopic.php?id=573

 

###############################
#
# To Unique SiteMap Link
#
# LightNEasy 2.2.1 no database 
#
###############################
#
##--[OPEN]------------------
#

 LightNEasy/lightneasy.php

#
#---[Find]-------------------
#
# In function_sitemap() : About Line500

  return '<a href="'.$pagenum.".".$set['extension'].'?do=sitemap">'.$langmessage[88].'</a>';

#
#---[Replace To]-------------
#

  return '<a href="./?do=sitemap">'.$langmessage[88].'</a>';
#
##########################