后台没找到地方啊。
-
请教个问题,可以换图片LOGO吗?
/View/hy_boss/h.html
<a href="{#WWW}">{$conf.logo}</a>
更改
<a href="{#WWW}"><img src="logo图片" ></a>
logo大小以及位置 请通过img.style进行调整 padding以及 width和height
谢谢,站长。这个程序真不错。
呵呵。多了一个空格。
<a href="{#WWW}"><img src="logo图片"></a>注意不要使用 记事本 这类比较简单的编辑器
请使用UTF8编辑器
谢谢。还需要请教一个问题。
我的主机是Nginx的,怎么写规则啊?不知道我描述清楚了了没。
@admin
如果使用了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即可
好牛逼。好了~~谢谢
@admin底部版权怎么修改啊