当前位置:首页 > 其他 > pageadmin隐藏版权信息

pageadmin隐藏版权信息

其他5年前 (2018-08-30)

pageadmin隐藏版权信息


头部titile隐藏

打开/e/usercontrol/web_top.ascx增加

<script language="javascript">
var strValue = " ";
var strTitle = document.title;
document.title = strTitle.replace("-Powered by PageAdmin CMS",strValue);</script>
<div style="display:none;"><a href="https://www.vos.cn/">vmos</a></div>


底部foot隐藏

打开/e/usercontrol/web_bottom.ascx增加

<script>
$(document).ready(function () {
$("[href='http://www.pageadmin.net']").parent().hide();
})
</script>


本站所有文章均可随意转载,转载时请保留原文链接及作者。

本文链接:https://www.vos.cn/other/227.html

相关文章

万网免费主机设置子目录绑定二级域名

万网免费主机设置子目录绑定二级域名

万网免费主机后台没有子目录绑定子域名的功能,只能通过.htaccess文件重写规则来完成例子为 子目录名称为nexus,实现nexus.vmos.cn代替www.vmos.cn/nexusRewrit...