引用:
原帖由 hoping 发表
把你改过的地方贴出来我看看,多带几行原文件
-------------------------------------------------
if ($mosConfig_sef) {
$_SERVER['REQUEST_URI']=str_replace(".html","",$_SERVER['REQUEST_URI']);
$url_array = explode("/", $_SERVER['REQUEST_URI']);
/**
* Content
============================================================
else if (eregi("option=com_",$string) && !eregi("option=com_registration",$string) && !eregi("task=new",$string) && !eregi("task=edit",$string)) {
/*
Components
index.php?option=com_xxxx&...
*/
$sefstring = "component/";
$temp = split("\?", $string);
$temp = split("&", $temp[1]);
foreach($temp as $key => $value) {
$sefstring .= $value."/";
}
$string = str_replace( '=', ',', $sefstring );
}
//echo $mosConfig_live_site."/".$string;
return $mosConfig_live_site."/index.php/".$string;
$string=substr($string,0,-1);
$string.=".html";
} else {
return $string;
}
}
?>-------------------------------------------
加粗加红的的地方是按照楼主的方法改的,
并在后台的全局设置里----搜索引擎友好链接:选择“是”先项!