4
1

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でphp includeを使えるようにする

Last updated at Posted at 2016-07-25

/Applications/MAMP/conf/apache を2か所編集する

apache(515行目付近)

# 編集前

    #AddType text/html .shtml
    #AddOutputFilter INCLUDES .shtml

#===================

# 編集後 

    AddType text/html .shtml
    AddOutputFilter INCLUDES .shtml .html .htm .php


apache(200行目付近)

# 編集前
<Directory />
    Options Indexes FollowSymLinks
    AllowOverride None 
</Directory>

#===================

# 編集後 

<Directory />
    Options Indexes FollowSymLinks
    AllowOverride All
    AddType application/x-httpd-php .htm .html 
</Directory>


4
1
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
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?