一、安装网站
1、上传到服务器上输入www.xxxx.com/install进行安装(具体安装方法找百度一大堆);
可以参考http://www.hlzcb.com/zhimengxueyuan/zhimenganzhuangshiyong/25830.html
2.安装好后台点击后台系统→数据库备份还原→数据还原,点击下面的开始还原数据;
二、设置伪静态
- 设置伪静态。LINUX宝塔系统Nginx设置教程:(伪静态代码请查看压缩包里的Nginx.txt)
2.找到网站根目录下的mycity文件夹下的index.php文件。打开编辑,把域名改成自己的。
这样就设置完了,网站就可以正常访问了。
①环境是Apache的直接把.htaccess上传到网站更目录
②如果是IIS的服务器直接导入.htaccess规则,具体导入方法百度找找。
备注:建议使用Linux宝塔系统或是Wdcp系统,环境使用Nginx。其他的环境的伪静态可能会出现城市分站翻页的bug。
注:更新主页时,有动态生成。
三、调用代码讲解
每个页面头部必备的文件:
在板<head>和</head>之间添加以下代码
{dede:php}require (DEDEROOT.’/mycity/index.php’);{/dede:php}
栏目链接:
[field:cityurl runphp=’yes’]@me=constant(‘cityurl’);[/field:cityurl]/list-[field:id/].html
栏目名称:
[field:city runphp=’yes’]@me=constant(‘city’);[/field:city] [field:typename/]
文章链接:
[field:cityurl runphp=’yes’]@me=constant(‘cityurl’);[/field:cityurl]/view-[field:id/].html
文章标题:
[field:city runphp=’yes’]@me=constant(‘city’);[/field:city] [field:title/]
首页TDK调用:
<title>{dede:php}echo constant(“title”);{/dede:php}</title>
<meta name=”description” content=”{dede:php}echo
constant(“city”);{/dede:php}{dede:global.cfg_description/}” />
<meta name=”keywords” content=”
{dede:php}echo constant(“keywords”);{/dede:php}” />
列表页和内容页TDK在原有的前面添加{dede:php}echo constant(“city”);{/dede:php}:
<title>{dede:php}echo constant(“city”);{/dede:php}{dede:field.title/}_{dede:global.cfg_webname/}</title>
<meta name=”keywords” content=”{dede:php}echo constant(“city”);{/dede:php}{dede:field name=’keywords’/}” />
<meta name=”description” content=”{dede:php}echo constant(“city”);{/dede:php}{dede:field name=’description’ function=’html2text(@me)’/}” />
当前栏目调用
当前栏目调用{dede:field name=’position’/}改为
{dede:field name=’position’ runphp=’yes’}
$st=split(‘ > ‘,@me);
$l = ”;
foreach ($st as $v) {
$s = split(“‘>”,$v);
if($s[‘1’]){
$l.= $s[‘0’].”‘>”.city.$s[‘1’].” > “;
}
}
@me=$l;
{/dede:field}
* 当前栏目点击不能调到对应栏目,只能跳到首页
想要增加修改城市 找到 mycity—city.php 想要添加自己的城市站点 还需要看下 pinyin.txt 有没有对应的拼音
评论(0)