codecamp

静态化

静态调用

静态调用大部分是为了使搜索引擎更与网站脚本的融洽度更高,如下:http://www.abc.com/index.php/home/index/show  其中url规定好第一个参数为实例名称名称第二个参数为控制器名称,第三个参数为方法名称,后面可以以【变量名/变量值】的方式继续如http://www.abc.com/index.php/home/User/login/name/test 使用user控制器中的login方法,后面的变量如同name=test

后缀

在伪静态中,页面后缀可以提升搜索引擎对网站的友好度,目前静态页面使用【html/htm/shtml】这三个比较多,可在View配置进行后缀设置,如下使用http://www.abc.com/index.php/home/index/show.html


默认访问
Image类
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

无标题目录

无标题目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }