I have been looking into Sitemap.php phpwcms and mod rewrite - it seems that they do not work well together as mod_rewrite is processed independently of phpwcms
I think... Search engines are easily confused when it comes to comparing the pre-rewritten index.php?articleAlias with the resolved articleAlias.phtml urls.
If may assumptions are correct then you may need to modify your sitemap.php to reflect the re-written naming convention like so...
Change...
Code: Select all
$_link = PHPWCMS_URL.'index.php?'.setGetArticleAid( $data );
Code: Select all
$_link = PHPWCMS_URL.setGetArticleAid( $data ).'.phtml';