织梦后台如何修改主页以及内页的Title Description 以及 Keywords
一:如果你需要的是某一处点点击弹出新窗口
<a href="#" target="_blank"></a>新窗口打开
二:如要你需要全站都是,那么这样加有点太麻烦了,你可以在
<head>与</head>之间加上<base target="_blank" />
那么只要加这句代码的网页,点点击所有链接都会新窗口打开的。
后台系统主页版权修改路径如下:
\dede\templets\index_bodyhtm
搜索:Copyright
大约在:241行,修改下即可。
<!-- //底部 --><div align="center" class="footer">
Copyright © 2004-2017 <a href='http://wwwkaifazhijiacom' target='_blank'><u>wwwkaifazhijiacom</u></a> xx科技 版权所有
</div>
织梦首页的标题、关键词、描述代码:
<title>{dede:globalcfg_webname/}</title><meta name="description" content="{dede:globalcfg_keywords/}"/>
<meta name="description" content="{dede:globalcfg_description/}"/>
织梦栏目页的标题、关键词、描述代码:
<title>{dede:fieldseotitle /}</title><meta name="keywords" content="{dede:field name='keywords'/}" />
<meta name="description" content="{dede:field name='description' function='html2text(@me)'/}" />
织梦文章页(内页)的标题、关键词、描述代码:
<title>{dede:fieldtitle/}_赵一鸣SEO博客(替换成你的品牌词)</title><meta name="keywords" content="" />
<meta name="description" content="{dede:fielddescription function='html2text(@me)'/}" />
关于织梦建站的整套视频教程,我博客的建站视频栏目中已经全部更新了,你可以作为参考。
如果我的回答对你有用,可以采纳哦!
关于dedecms织梦程序首页如何去除indexhtml有以下三种解决方法
一、静态访问也分3种解决方法
1、IIS
打开IIS点击文档,里面将indexhtml置于indexphp上面,这有什么作用呢其实这样设置就是在网站同时有indexphp和indexhtml的情况下,先访问index,html这样就不会出现跳转的情况
2、Apache
apache里面DirectoryIndex来控制文件检索优先级的
DirectoryIndex indexhtml indexphp indexhtm
和iis一样,将indexhtml往前放
3、虚拟主机
把网站默认首页indexhtml放到indexphp前面,这样它自动读到indexhtml就不会跳转了
二、直接动态浏览
网站动态访问的情况下,程序会删除根目录下面的Indexhtml
,那么会执行include(dirname(__FILE__)。‘/indexhtml’);这段代码,把首页引用而非跳转。
三、把dedecms的indexphp更为以下内容
GetOne("Select From `#@__homepageset`"); $row['templet'] =
MfTemplet($row['templet']); $pv = new PartView();
$pv->SetTemplet($cfg_basedir $cfg_templets_dir "/" $row['templet']);
$pv->SaveToHtml(dirname(__FILE__)'/indexhtml');
include(dirname(__FILE__)'/indexhtml'); exit(); >
//自动生成HTML版
require_once (dirname(__FILE__) "/include/commonincphp");
require_once DEDEINC"/arcpartviewclassphp";
$GLOBALS['_arclistEnv'] = 'index';
$row = $dsql->GetOne("Select From `#@__homepageset`");
$row['templet'] = MfTemplet($row['templet']);
$pv = new PartView();
$pv->SetTemplet($cfg_basedir $cfg_templets_dir "/"
$row['templet']);
$pv->SaveToHtml(dirname(__FILE__)'/indexhtml');
include(dirname(__FILE__)'/indexhtml');
exit();
>
其实主要就是把那段301定向代码删除
header(‘HTTP/11 301 Moved Permanently’);
header(‘Location:indexhtml’);
0条评论