1.把廣告JS插入到首頁(yè)、欄目頁(yè)、內(nèi)容頁(yè)
做網(wǎng)站、成都網(wǎng)站制作的開(kāi)發(fā),更需要了解用戶(hù),從用戶(hù)角度來(lái)建設(shè)網(wǎng)站,獲得較好的用戶(hù)體驗(yàn)。創(chuàng)新互聯(lián)多年互聯(lián)網(wǎng)經(jīng)驗(yàn),見(jiàn)的多,溝通容易、能幫助客戶(hù)提出的運(yùn)營(yíng)建議。作為成都一家網(wǎng)絡(luò)公司,打造的就是網(wǎng)站建設(shè)產(chǎn)品直銷(xiāo)的概念。選擇創(chuàng)新互聯(lián),不只是建站,我們把建站作為產(chǎn)品,不斷的更新、完善,讓每位來(lái)訪用戶(hù)感受到浩方產(chǎn)品的價(jià)值服務(wù)。
2.刷新---》重新生成
3.OK
你檢查下是不是數(shù)據(jù)庫(kù)的原因造成 你復(fù)制到另外服務(wù)器數(shù)據(jù)導(dǎo)入是否正確了 重復(fù)試一次看看,不要遺漏
在首頁(yè)模板中加入下面代碼,盡量放在底部。
script language="javascript" type="text/javascript" src="/e/htmlindex/index_html.php"/script
在 /e/ 建立文件夾 htmlindex 并設(shè)置 777權(quán)限
將下面代碼保存在 /e/htmlindex/index_html.php
修改刷新時(shí)沒(méi)雹鄭間,將文件中1200改為你想要的時(shí)間,單位為秒枯頌。
?php
require("../class/connect.php");
include("../class/db_sql.php");
include("../class/config.php");
include("../class/functions.php");
include("../class/t_functions.php");
require?LoadLang("pub/fun.php");
require("../data/dbcache/class.php");
require("../data/dbcache/MemberLevel.php");
include("../class/chtmlfun.php");?
$link=db_connect();
$empire=new?mysqlquery();
$filepath_s="indexhtmlhc.txt";
$time=time();
@$filemtime=(int)filemtime($filepath_s)+1200;
/*
函數(shù)解釋
file_exists()?函數(shù)檢查文件或目錄是否存在。
mkdir()?函數(shù)創(chuàng)建目錄肆談。
time()?函數(shù)返回當(dāng)前時(shí)間的?Unix?時(shí)間戳。
filemtime()?函數(shù)返回文件內(nèi)容上次的修改時(shí)間。
*/
if?(!file_exists($filepath_s)){
fopen($filepath_s,?'w');
@chmod($filepath_s,?0777);
ReIndex();
}elseif(!file_exists($filepath_s)?||?(filemtime($filepath_s)+1200)time()){
fopen($filepath_s,?'w');
@chmod($filepath_s,?0777);
ReIndex();
}else{
//?do?nothing
}
db_close();
$empire=null;
?