Die erforderlichen Installationspakete finden Sie in meinen Download-Ressourcen: http://download.csdn.net/detail/javaxiaojian/8854311
1. Installieren Sie Apache
Ich stelle httpd -2.2 zur Verfügung .11.tar.gz
Wenn Sie die neueste Version herunterladen müssen, gehen Sie bitte zur offiziellen Website http://httpd.apache.org/download.cgi
1. Erstellen Sie den Apache2 Verzeichnis
mkdir/usr/local/apache2
2. Legen Sie httpd-2.2.11.tar.gz in dieses Verzeichnis ab
Cd /usr/local/apache2
tar -zxvf httpd-2.2.11.tar.gz
3. Konfiguration
cd /usr/local/apache2
./configure --prefix=/usr/local/apache2 --enable-module=shared --with-included-apr
如果在这一步出现错误,请联系me寻求帮助
5、编译 make 6、安装 make install 7、启动,重启和停止 ,先切换到安装完成后的目录/usr/local/apache2/bin ./apachectl -k start ./apachectl -k restart ./apachectl -k stop
8、配置文件(满足最基本的配置) 编辑 /usr/local/apache2/conf/httpd.conf 文件 找到: AddType application/x-compress .Z AddType application/x-gzip .gz .tgz 在后面添加: AddType application/x-httpd-php .php(使Apcche支持PHP) AddType application/x-httpd-php-source .php5
找到: <IfModule dir_module> DirectoryIndex index.html </IfModule> 添加: <IfModule dir_module> DirectoryIndex index.html index.php </IfModule>
找到: #ServerName www.example.com:80 修改为: ServerName 127.0.0.1:80或者ServerName localhost:80 记得要去掉前面的“#”
make
6. Testen kompilieren
make test
7. Installieren
make install
Erstellen Sie eine PHP-Datei test.php unter den htdocs von Apache. Der Inhalt lautet wie folgt:
phpinfo();
?>