本文目录一览:
我想用非根目录下的php文件作为网站主页,请问如何设置?
服务器设置了默认首页的!如果你没办法改默认首页,可以用htaccess或者把index.php改成header('Location:default.php');
htaccess方法:
RewriteRule ^/cn/index\.php$ /cn/default.php [R]
php中怎么实现”加入收藏“和”设为首页“?
PHP 没有相关的功能,不过可以通过javascript脚本来实现
加入收藏的js代码如下:
目前兼容IE系列和Firefox,至于其他的浏览器,则弹窗提示“用Ctrl+D来加入收藏”。
script type="text/javascript"
//加入收藏的函数
function bookmark(title, url) {
if(document.all) { // ie
window.external.AddFavorite(url, title);
}else if(window.sidebar) { // firefox
window.sidebar.addPanel(title, url, "");
}else if(window.opera window.print) { // opera
var elem = document.createElement('a');
elem.setAttribute('href',url);
elem.setAttribute('title',title);
elem.setAttribute('rel','sidebar');
elem.click(); // this.title=document.title;
}else{
alert("加入收藏失败,请使用Ctrl+D进行添加");
}
}
/script
加入收藏 HTML 代码调用
设为首页的js代码:
php程序首页栏目怎么修改
php程序首页栏目修改如下:
1、打开目录:phpcmstemplatesdefaultcontent。
2、修改网站首页文件为:indexhtml文件即可。
php作为网络开发的强大语言之一,现在应用非常广泛,具有开放源代码,跨平台性强,开发快捷,效率高,面向对象,并且易于上手,专业专注等诸多优点。各种PHP开发框架也让程序开发变的简单有效。
更多关于php程序首页栏目怎样修改,进入:查看更多内容