Heim >Backend-Entwicklung >PHP-Tutorial >PHP环境搭建要点

PHP环境搭建要点

WBOY
WBOYOriginal
2016-06-23 14:28:46993Durchsuche

工具下载:

  Apache:http://httpd.apache.org/download.cgi

  PHP:http://windows.php.net/download/

  MYSQL:http://dev.mysql.com/downloads/

PHP环境搭建要点主要在于配置文件的修改:

  1、Apache端口修改:

    http.conf文件:46行->Listen 80,172行->ServerName localhost:80。

  2、Apache服务器执行WEB主程序的目录:

    http.conf文件:DocumentRoot "path",

  3、Apache支持PHP:

    http.conf文件:添加

    LoadModule php5_module "phppath/php5apache2_2.dll"
    PHPIniDir "phppath"
    AddType application/x-httpd-php .php .html .htm

  4、

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:PHP运行环境搭建Nächster Artikel:PHP日期检查函数