LoginSignup
7
6

More than 5 years have passed since last update.

Apache + Windows + PHP

Last updated at Posted at 2014-07-03

download

インストール

※ zip 解凍して適宜 コピー(or 移動)

PROGRAM INSTALL DIR 以下別称
apache %PROGRAM_FILES%\Apache\httpd 2.4.9 HTTPD_HOME
php %PROGRAM_FILES%\PHP\5.5.14 PHP_HOME

httpd.conf の設定を変更する

  • ServerRoot $HTTPD_HOME
  • DocumentRoot $HTTPD_HOME/htdocs
  • Directory $HTTPD_HOME\htdocs
  • Directory $HTTPD_HOME\cgi-bin
  • ScriptAlias /cgi-bin $HTTPD_HOME\cgi-bin

httpd.conf の設定を追加する (別ファイルで Include する )

  • LoadModule php5_module $PHP_HOME\php5apache2_4.dll
  • PHPIniDir $PHP_HOME
  • AddType application/x-httpd-php .php

php.ini の編集

自動判定してくれませんw
; Directory in which the loadable extensions (modules) reside.
; http://php.net/extension-dir
; extension_dir = "./"
; On windows:
; extension_dir = "ext"
extension_dir = "ext"
7
6
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
6