○apacheのインストール
apacheのインストール
rootユーザで
[root@localhost]# yum -y install httpd
[root@localhost]# yum -y install php php-mbstring ← php、php-mbstringインストール
設定その1
設定ファイルのhttpd.confを修正する。
[root@localhost]# vi /etc/httpd/conf/httpd.conf ← httpd設定ファイル編集
<Directory "/var/www/html"> # # Possible values for the Options directive are "None", "All", # or any combination of: # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews # # Note that "MultiViews" must be named *explicitly* --- "Options All" # doesn't give it to you. # # The Options directive is both complicated and important. Please see # http://httpd.apache.org/docs-2.0/mod/core.html#options # for more information. # Options Indexes FollowSymLinks ↓ Options Includes ExecCGI FollowSymLinks ← CGI,SSIの許可
AllowOverride None
↓
AllowOverride All ← .htaccessの許可
AddDefaultCharset UTF-8 ↓ #AddDefaultCharset UTF-8 ← コメントアウト(文字化け対策) 修正したら、l上書き保存
[root@host0 ~]# systemctl start httpd
← 起動
[root@host0 ~]# systemctl enable httpd ←自動起動設定
PHPの動作確認PHPで簡単なテストページを表示してみる。
[root@localhost]# vi /var/www/html/test.php ← PHPテスト用ページ作成
<?php
phpinfo();
?>
http://IPアドレス/test.phpにアクセスしてphpinfoページが表示されれば
OK