Apache POI 3.1-FINAL

2008-07-02 14:37

Apache POI is well-known in the Java field as a library for reading and writing OLE2 office file formats, such as Excel, PowerPoint, Visio and Word. More than 100 bug fixes and plenty of new features are introduced in this version... [阅读全文]

Apache mod_rewrite Basics

2008-07-02 13:38

Apache mod_rewrite is a tool that I wish I had tried to understand a lot early than I did. It makes URLs look so much cleaner not to mention the positive SEO results. This is a basic tutorial to get you started.... [阅读全文]

drupalchina.org备选站点测试

2008-06-30 18:48

9470 apache 16 0 174m 55m 11m S 0 21.5 7:55.08 php-cgi 9471 apache 16 0 159m 42m 11m S 0 16.6 7:52.04 php-cgi 9486 apache 16 0 144m 26m 10m S 0 10.3 7:21.84 php-cgi 9467 apache 15 0 95800 2956 752 S 0 1.1 0:03.77 lighttpd … ... [阅读全文]

How to bridge PHP and Java on Windows with Apache Tomcat

2008-06-30 11:15

Want to run PHP and access Java? Here's how to do it on Windows XP using Apace and Apache Tomcat. Although the tutorial show you how to do things by installing Apache Tomcat, this may not be ideal or what most want to do. So you may want to try this using the new Xampp Apache Tomcat addon.... [阅读全文]

Easy Django installer with Apache and MySQL support

2008-06-28 07:24

You can find here a multiplatform installer for the Django framework, you can use it on Windows, Mac OS X and GNU/Linux. It takes less than three minutes to have Django with Apache, SQLite and MySQL support. They also provide forums to give support.... [阅读全文]

Apache Wicket 1.3.4: Many Bug Fixes, Especially Leaks Plugged

2008-06-28 05:13

The Apache Wicket team has made available its fourth 1.3 maintenance release: Apache Wicket 1.3.4. A lot of bugs have been squashed and several improvements implemented. Two noteworthy bugs have been squashed... [阅读全文]

配置Apache服务器

2008-04-30 16:12 配置Apache服务器

Apache服务器的设置文件位于/usr/local/apache/conf/目录下,传统上使用三个配置文件httpd.conf,access.conf和srm.conf,来配置Apache服务器的行为。 httpd.conf提供了最基本的服务器配置,是对守护程序httpd如何运行的技术描述;srm.conf是服务器的资源映射文件,告诉服务器各种文 件的MIME类型,以及如何支持这些文件;access.conf用于配置服务器的访问权限,控制不同用户和计算机的访问限制;这三个配置文件控制着服务 器的各个方面的特性,因此为了正常运行服务器便需要设置好这三个文件。 除了这三个设置文件之外,Apach... [阅读全文]

Apache 配置 - Apache 网络服务器终极教程

2008-04-30 15:33 Apache 配置 - Apache 网络服务器终极教程

根据著名的WWW服务器调查公司所作的调查,世界上百分之五十以上的WWW服务器都在使用Apache,是世界排名第一的WEB服务器。Apache的诞生极富有戏剧性。当NCSA WWW服务器项目停顿后,那些使用NCSA WWW服务器的人们开始交换他们用于该服务器的补丁程序,他们也很快认识到成立管理这些补丁程序的论坛是必要的。就这样,诞生了Apache Group,后来这个团体在NCSA的基础上创建了Apache。 Apache的主要特征是: 可以运行上所有计算机平台; 支持最新的HTTP 1.1协议; 简单而强有力的基于文件的配置; 支持通用网关接口CGI; 支持虚拟主机; 支持HTTP认证; 集成... [阅读全文]

Apache Mod_Rewrite 实例 - 在 httpd 中将一个域名转发到另一个域名

2006-07-11 00:25

站长世界近期更换了域名,新域名为 www.zzvo.com, 更加简短好记。这时需要将原来的域名 zz-world.com, 以及论坛所在地址 zz-world.com/forums/ 定向到新的域名,以便用户可以找到,并且使原来的论坛 URL 继续有效而不出现 404 未找到,比如原来的 http://www.zz-world.com/forums/-f60.html, 让它在新的域名下继续有效,点击后转发到 http://bbs.zzvo.com/-f60.html, 这就需要用 apache 的 Mod_rewrite 功能来实现。 在< virtualhost> 中添加下面... [阅读全文]

几个常用的301重定向

2005-10-18 02:55

1. 将一个网址永久定向到另一个网址: 比如将www.digbuzz.com 定向到 www.digbuzz.net, 可以在你的 digbuzz.com 的根文件夹内的.htaccess 文件中加入这样一行: CODE Redirect permanent / http://www.digbuzz.net/ 如果没有.htaccess 文件,要新建一个。这样,当用户访问www.digbuzz.com时,将自动转向www.digbuzz.net. 同时也是告诉搜索引擎这两个域名的关系。 2. 将主页的几个地址表达形式定向到一个地址,这样做的好处,可以参看这里。在你选定一个根地址以后,用这种方法... [阅读全文]