全部博文(534)
分类: LINUX
2010-02-24 18:29:00
1. wget --continue
2. tar -jxf apache-2.2.9.tar.bz2
3. cd apache-2.2.9
4. ./configure --prefix=/usr/local/apache-2.2.9 --with-mpm=prefork --enable-so --enable-modules=all --enable-mods-shared=all --enable-rewrite --enable-proxy --enable-proxy-http
5. make && make install
6. vi apache-2.2.9/conf/extra/httpd-vhost.conf
加入
ProxyRequests On"
ServerName
rewriteengine on
rewriterule ^/(.*) [P] # proxy|P (强制为代理 proxy)
7. apache-2.2.9/bin/apachectl start
8. 就会 出现 的首页,但是在往里点就是百度的网址了
参考: