在百度知道裡看到一個朋友說 dede織夢程序模板中iframe調用的模板不能生成網頁 問題如下:
原本的代碼是:{dede:include filename="head.htm"/}。
因為不想讓百度抓取這些內容,所以想把內容放在iframe內,改成這樣: <center> <iframe width=960frameborder=0 scrolling=no src="http:///head.htm"></iframe></center>
結果是這個head,htm沒有生成網頁,是源碼。
我再換成這樣: <center><iframe width=960 frameborder=0 scrolling=no src="{dede:includefilename="head.htm"/}"></iframe> </center>還是不行,依然是沒有生成網頁。
難道dede不能用iframe調取模板嗎?吾愛網提供的解決方案:
iframe裡的src應該寫head.htm的實際生成路徑
{dede:include filename="head.htm"/}解析以後會是
head.html的源代碼 而不是實際網頁的路徑
在模板裡改成這樣
<center>
<iframe width=960 frameborder=0 scrolling=no src="/head.htm"></iframe>
</center>
然後在後台 單頁文檔管理 點擊增加一個頁面
文件名裡寫 /head.htm 這個意思是生成的網站根目錄,跟模板裡src的位置對應
模板文件名寫 {style}/head.htm (這個填寫這個頁面用到的模板)
是否編譯內容選擇 含模板標記,要編譯
其他字段隨便填寫
然後確定保存 更新這個頁面
接著生成網站看一下效果吧.
http://
*