请教关于PHP安装的问题!

发布于 2022-09-18 19:15:08 字数 1366 浏览 16 评论 0

大家好!我再linux环境下安装mysql+apache+php的组合!当安装PHP的时候:
[root@weiming root]#cd /usr/local/
  [root@weiming local]# tar -zxvf php-5.2.8.tar.gz
  [root@weiming local]# cd php-5.2.8
  [root@weiming php-5.2.8]# ./configure --prefix=/usr/local/php4 --with-apxs2=/usr/local/apache/bin/apxs --with-

  mysql=/usr/local/mysql

      #make
#make install
#cp php.ini-dist /usr/local/lib/php.ini
#vi /usr/local/apache2/conf/httpd.conf
就是这步的问题:
网上的资料说是:DirectoryIndex index.html
在后面加入 index.php 让apache也能打开默认首页为php的文件。
查找:
#AddType application/x-tar .tgz
在下面加入
AddType application/x-httpd-php .php

重启apache

第一个DirectoryIndex index.html
找到啦而且也添加啦!但是#AddType application/x-tar .tgz
没有找到只找到了:#AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz和
   AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
   这两项我在下面添加AddType application/x-httpd-php .php

出去重启APACHE:
[root@localhost httpd]# /usr/local/apache/bin/apachectl start
Syntax error on line 310 of /etc/httpd/httpd.conf:
AddType requires at least two arguments, a mime type followed by one or more file extensions
这是怎么回事??高手给下解答??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

孤单情人 2022-09-25 19:15:08

在第310行查找下错误。

思慕 2022-09-25 19:15:08

310行就是这两句啊!!AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
我加上AddType application/x-httpd-php.php才显示出错的啊!!

兔小萌 2022-09-25 19:15:08

找到AddType
添加AddType application/x-httpd-php .php4

甜点 2022-09-25 19:15:08

不是吧!我试试!!怎么可能是php4?应该是Add application/x-httpd-php.php5吧?

谁许谁一生繁华 2022-09-25 19:15:08

AddType application/x-httpd-php .php
就行,注意httpd-php .php之间有空格

夏末的微笑 2022-09-25 19:15:08

你用系统自带的AMP不行吗?干嘛非要编译呢?

娇纵 2022-09-25 19:15:08

复制这两行代替你的试一下
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文