摘要: 【1】没想到遇见了Noinputfilespecified因为项目用了URLroute,估摸着可能是rewrite的问题。记录一下解决方案。1.检查doc_root是否设置此值2.检查.hta文件,很多框架都是index.php当入口文件。默认的RewriteRule^(.*)$index.php/$1[QSA,PT,L]规则在apachefastcgi模式下会导致Noinputfilespecified.修改成RewriteRule^(.*)$index.php[L,E=PATH_INFO:$1]就OK,地址正常重写。【2】我们都知道,使用伪静态相对来说,对搜索引擎比较友好,而我在Dream 阅读全文
posted @ 2013-04-25 21:44 笨笨の猫 阅读(492) 评论(0) 推荐(0) 编辑
摘要: CentOS 6.2 SVN 1.7.9 支持HTTP和HTTPS 编译安装安装脚本如下: 1 #!/bin/bash 2 3 yum -y remove subversion 4 mkdir -p /dist/{dist,src} 5 cd /dist/dist 6 /bin/rm -f openssl* subversion* 7 wget "http://www.openssl.org/source/openssl-1.0.1e.tar.gz" 8 wget "http://labs.mop.com/apache-mirror/subversion/subv 阅读全文
posted @ 2013-04-25 11:56 笨笨の猫 阅读(621) 评论(0) 推荐(0) 编辑