Module Name: sapi_apache2.c
Content handlers: none
Configuration Phase Participation: Create Directory Config, Merge Directory Configs
Request Phase Participation: Post-Read Request
Module Directives:
php_value - PHP Value Modifier
php_flag - PHP Flag Modifier
php_admin_v
Content handlers: none
Configuration Phase Participation: Create Directory Config, Merge Directory Configs
Request Phase Participation: Post-Read Request
Module Directives:
php_value - PHP Value Modifier
php_flag - PHP Flag Modifier
php_admin_v
可惜Dreamhost的GeoIP.dat已经是去年6月份的数据了,有些旧:
/usr/local/share/GeoIP/GeoIP.dat
-rw-r--r-- 1 root root 714742 2005-06-07 21:39 /usr/local/share/GeoIP/GeoIP.dat
而且DreamHost缺省也没有安装GeoLite City库,如果想用GeoIP和GeoLiteCity的最新的数据可以直接从MaxMind下载:
wget http://www.maxmind.com/download/geoip
一、启用该功能的要求
1.必须是apache服务器
2.apache必须已经打开mod_rewrite
如果windows下在httpd.conf中将附图上这行的注释符去掉就行了
如果您是*nix下编译安装,可以参考这个编译参数,这样会把重写模块编译进apache核心中,加快处理速度
./configure \
--prefix=/usr/local/apache \
--with-mpm=prefork \
--enable-so \ 阅读全文
1.必须是apache服务器
2.apache必须已经打开mod_rewrite
如果windows下在httpd.conf中将附图上这行的注释符去掉就行了
如果您是*nix下编译安装,可以参考这个编译参数,这样会把重写模块编译进apache核心中,加快处理速度
./configure \
--prefix=/usr/local/apache \
--with-mpm=prefork \
--enable-so \ 阅读全文
win2003+apache的服务器,apache绑定域名需要重启,比较麻烦。
apache不重启绑定域名的办法(非Rewrite重写)
目录结构是这样规划的
D:/website --- 所有的网站都放在这里
D:/website/域名后缀/域名
例如:
1. 我现在需要绑定一个 http://www.domain.com/ 域名
哪么 我只
apache不重启绑定域名的办法(非Rewrite重写)
目录结构是这样规划的
D:/website --- 所有的网站都放在这里
D:/website/域名后缀/域名
例如:
1. 我现在需要绑定一个 http://www.domain.com/ 域名
哪么 我只
在最后加上
NameVirtualHost *
rewriteengine on
rewritecond %{HTTP_HOST} [^.]+\.alibaba\.uni\.cc$
rewriterule ^(.+) %{HTTP_HOST}$1 [C]
rewriterule ([^.]+)\.alibaba\.uni\.cc(.*) /$1$2
ServerA
NameVirtualHost *
rewriteengine on
rewritecond %{HTTP_HOST} [^.]+\.alibaba\.uni\.cc$
rewriterule ^(.+) %{HTTP_HOST}$1 [C]
rewriterule ([^.]+)\.alibaba\.uni\.cc(.*) /$1$2
ServerA