131
I try to resolved the problem in seo with link not in seo format.
i modify header.php the code:
/* for seo */
$toseo_url = array("index.php","viewforum.php","viewtopic.php","rss.php");
$seourl=false;
if(((strpos(getenv('REQUEST_URI'), '.html') === false) && !empty($xoopsModuleConfig['do_rewrite']) && (!isset($_POST) || count($_POST) <= 0)))
{
$seourl=true;
if ( strpos(getenv("REQUEST_URI"),"/modules/newbb/index.php?mark_read") === false && in_array(basename(getenv('SCRIPT_NAME')),$toseo_url) && (trim(getenv("REQUEST_URI")) != '') && strpos(getenv("REQUEST_URI") , "/".REAL_MODULE_NAME."/") === false ) {
and in view file a mofity in this mode:
if (!empty($xoopsModuleConfig['do_rewrite']) && $seourl==false) $nav->url = XOOPS_URL.$nav->url;
In this mode external link not in seo mode and link from search.php work.
if not make this change the navigation page dont't work.
What you do think?