今天学习PHP的安装 ,记录一下学习过程;
1.安装PHP的环境;
yum -y install PHP72w PHP72w-cli PHP72w-fpm PHP72w-common PHP72w-devel PHP72w-embedded PHP72w-gd PHP72w-mbstring PHP72w-MysqLnd PHP72w-opcache PHP72w-pdo PHP72w-xml
yum install PHP PHP-fpm PHP-MysqL -y
3.PHP跟apche结合工作
编辑apche的配置文件
vim /etc/httpd/conf/httpd.conf
输入/DocumentRoot查找
/DocumentRoot "/var/www/html"
插入:
TypesConfig /etc/mime.types
AddType application/x-httpd-PHP .PHP
AddType application/x-httpd-PHP-source .PHPs
DirectoryIndex index.PHP index.html
vim /var/www/html/index.PHP
i 插入
<?PHP PHPinfo(); ?>
esc,shift :wq保存退出
stemctl restart httpd 重启apche服务查看PHP内容
到这里就成功了。