全部博文(107)
发布时间:2016-09-28 11:16:48
网站负责seo的同事要求,设置网站/index.html到/的301跳转(网站默认首页是index.html)。刚开始效仿不带www的域名到带www的域名的301跳转,用rewrite进行设置,会死循环。后来发现,可以用return实现: if ($request_uri = /index.html) { return 301 http://www.domain.com/; }.........【阅读全文】
发布时间:2016-09-27 17:13:28
IIS下某个php站点访问异常,提示require的文件不存在:Warning: require(app/config/constants.php) [function.require]: failed to open stream: No such file or directoryFailed opening required 'app/config/constants.php' (include_path='c:/windows/PHP526/PEAR')但实际上是存在的。此问题有两种解决方案:.........【阅读全文】
发布时间:2016-09-05 15:48:31
编译安装memcache模块时,出现以下报错:memcache.c:34:18: error: zlib.h: No such file or directory字面上的意思是,没有安装zlib。但实际上是有安装的:[root@localhost ~]# rpm -qa|grep zlibzlib-1.2.3-29.el6.x86_64尝试重新configure,并显式指定zlib的路径:./configure --enable-memcache --with-php-con.........【阅读全文】