切换风格

默认 晚霞 雪山 粉色心情 伦敦 花卉 绿野仙踪 加州 白云 星空 薰衣草 城市 简约黑色 简约米色 龙珠
请教个问题,可以换图片LOGO吗?
 6562     9
发表于 2016-7-16 |

后台没找到地方啊。


发表于 2016-7-16 |

/View/hy_boss/h.html 

<a href="{#WWW}">{$conf.logo}</a>

更改

<a href="{#WWW}"><img src="logo图片" ></a>

logo大小以及位置  请通过img.style进行调整 padding以及 width和height

发表于 2016-7-16 |

谢谢,站长。这个程序真不错。

发表于 2016-7-16 |

呵呵。多了一个空格。

<a href="{#WWW}"><img src="logo图片"></a>


发表于 2016-7-16 |

注意不要使用  记事本 这类比较简单的编辑器 

请使用UTF8编辑器

发表于 2016-7-17 |

谢谢。还需要请教一个问题。

我的主机是Nginx的,怎么写规则啊?不知道我描述清楚了了没。

发表于 2016-7-17 |

@admin

发表于 2016-7-17 |

如果使用了vhost 就需要到

/usr/local/nginx/conf/vhost/你的专属.conf 

编辑这个conf  

找到

#error_page 404 /404.html;
include enable-php.conf;

在下面增加

if (!-e $request_filename) {
 rewrite  ^(.*)$  /index.php?s=$1  last;
 break;
  }

形成

        include other.conf;
        #error_page   404   /404.html;
        include enable-php.conf;
if (!-e $request_filename) {
 rewrite  ^(.*)$  /index.php?s=$1  last;
 break;
  }
        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }

保存 重启Nginx即可

发表于 2016-7-17 |

好牛逼。好了~~谢谢

发表于 2017-1-13 |

 @admin底部版权怎么修改啊

GMT+8, 2024-11-26 12:51:33 运行耗时 0.0262 秒.

Powered by HYBBS 2.3.4

© 2016-2019 HYBBS

返回顶部