こんばんみ
今日はMacでPHPの設定をやりましょう。
Mountain Lionから設定のWeb共有がなくなったので
Apache on offが手動になりました。
なので!
ターミナルから手動でやりまふ。
1 |
<a id="" href="http://d.hatena.ne.jp/keyword/sudo" target="_blank" shape="rect">sudo</a> apachectl stop 停止 |
1 |
<a id="" href="http://d.hatena.ne.jp/keyword/sudo" target="_blank" shape="rect">sudo</a> apachectl start 起動 |
1 |
<a id="" href="http://d.hatena.ne.jp/keyword/sudo" target="_blank" shape="rect">sudo</a> apachectl restart 再起動 |
1 |
ですね!
MacにはApacheが入ってるので
1 |
sudo vim /etc/apache2/httpd.conf |
vimmerならば
/phpと検索しましょう
1 |
#LoadModule php5_module libexec/apache2/<a id="" href="http://libphp5.so/" target="_blank" shape="rect">libphp5.so</a> |
コメント消す
あとはDocument rootの設定をします
次に/Documentと検索
1 |
#DocumentRoot "/Library/WebServer/Documents" |
1 |
DocumentRoot "/Users/ユーザ名/Sites" |
保存
こんな感じです。盲点はDocumentrootをちゃんと設定してなく、
コレに気づかなくて時間がかなり過ぎてしまった・・・
あとはApache再起動
1 |
sudo /etc/init.d/apache2 restart |
Siteの中にPHPファイルを作るだけです。
cd Site
ちなみにLinuxもこんな感じです。
おわり(・∀・)
0件のコメント