14
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MacでPHPを有効にする方法

Posted at

ローカルでPHPテスト環境を作る時にやったことメモ。

##1. Apacheの起動
ターミナルから、スーパーユーザーでApacheを起動する。

ターミナル
sudo apachectl start

ブラウザでhttp://127.0.0.1/にアクセスし、Apacheが起動しているか確認。
(起動していれば「It works!」と表示されるはず)

##2. PHPの有効化

/etc/apache2/にあるhttpd.confを開く。

httpd.conf
#LoadModule php5_module libexec/apache2/libphp5.so

上の行がコメントアウトされているので、#を削除し、httpd.confファイルを上書き保存してApacheを再起動。

ターミナル
sudo apachectl restart

##3. PHPの起動確認
エディタを開き、下のコードを書いてphpinfo.phpのファイル名で/library/Webserver/documents/に保存する。

phpinfo.php
<?php
    phpinfo();
?>

ブラウザでhttp://127.0.0.1/phpinfo.phpにアクセスしてphpinfoが表示されれば成功!

14
16
0

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
14
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?