3
2

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.

Mamp Proで.htmlでphpを動かす

Posted at

Mamp Proで.htaccessに.htmlでPHPを動かせるようにしていたが、Mamp Proでは動かなかった。

.htaccess
AddHandler application/x-httpd-php .php .html

症状

  • PHPは読み込まれているが、表示されない
  • .htaccess自体は読み込まれている(変更すると500になる)

回避方法

/Application/MAMP/conf/apache/httpd.confの138行目を下記のように修正し、MampのPHPのモードを「すべてのホストに同じPHPバージョンを使用(モジュール)」にすると動くようになる。

/Application/MAMP/conf/apache/httpd.conf
AddType application/x-httpd-php .php .phtml .html .htm

CGI版で動かす方法をご存知でしたら、教えてください。

参考:MAMP htmlでphpを動かす

3
2
1

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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?