web.xml文件: 1 2 4 5 10 6 7 8 index.jsp 9 10 11
UrlRewriterHelper12 helper.UrlRewriterHelper13 14 15 Ur...
分类:
Web程序 时间:
2014-04-28 10:35:01
阅读次数:
2186
Yii进入项目首页时默认是index.php文件路径,如何把index.php去掉,方法如下:
打开apache配置文件http.conf,找到如下的代码:#LoadModule rewrite_module modules/mod_rewrite.so
把前面的#号去掉。 往下继续查找,找到,即....
分类:
其他好文 时间:
2014-04-28 09:24:28
阅读次数:
659
1、安装apache软件包Yum install
httpd2、启动apache服务/etc/init.d/httpd
restart3、创建一个目录,内编辑一个index.html文件4、给这个目录设密码(是不是很passwd文件内用户的密码文件很像)5、编辑apache配置文件/etc/http...
分类:
其他好文 时间:
2014-04-27 20:54:27
阅读次数:
655
支持泛型AVL Tree的简单实现,并和STL map比较了插入,删除,查找的性能...
分类:
其他好文 时间:
2014-04-27 19:43:40
阅读次数:
400
自己写的最新版本extjs4.2的树结点的操作,记录一下,以后可能会用到。
var tree = new Ext.tree.TreePanel({
flex: 1,
animate: true,
autoScroll: true,
anchor: '100% 93%',
store: new Ext.data.TreeStore({
root:{
expanded: true...
分类:
Web程序 时间:
2014-04-27 19:00:19
阅读次数:
1278
??
1、Binary Tree Postorder Traversal
Given a binary tree, return the postorder traversal of its nodes' values.
For example:
Given binary tree {1,#,2,3},
1
2
/
3
retu...
分类:
其他好文 时间:
2014-04-27 18:58:59
阅读次数:
481