Maison >développement back-end >Problème PHP >Apache prend-il en charge php ?
apache prend en charge php
php est le meilleur langage serveur, Apache a un fort support pour php (Apprentissage recommandé : Tutoriel vidéo PHP)
1. Vérifiez si php est installé. S'il n'y a aucune information, vous devez installer php vous-même
[root@localhost ~]# rpm -qa | grep php
Installer php, entrez la commande. "yum install –y php" dans le terminal
[root@localhost ~]# yum install -y php Loaded plugins: fastestmirror, refresh-packagekit, security Loading mirror speeds from cached hostfile Dependency Installed: php-cli.i686 0:5.3.3-26.el6 php-common.i686 0:5.3.3-26.el6 Complete! [root@localhost ~]#
3. Vérifiez à nouveau s'il est installé. La visualisation des informations suivantes prouve que l'installation a réussi.
[root@localhost ~]# rpm -qa | grep php php-cli-5.3.3-26.el6.i686 php-5.3.3-26.el6.i686 php-common-5.3.3-26.el6.i686 [root@localhost ~]#
4. Redémarrez le service Apache
[root@localhost ~]# service httpd restart 停止 httpd: [确定] 正在启动 httpd:httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName [确定] [root@localhost ~]#
5. Testez php. Créez un fichier test.php dans le répertoire "/var/www/html/". Saisissez ensuite "127.0.0.1/test.php" dans le navigateur
[root@localhost ~]# cd /var/www/html/ [root@localhost html]# ls [root@localhost html]# touch test.php [root@localhost html]# gedit test.php <?php echo "hello php"; ?>
Vous pouvez voir les résultats suivants dans le navigateur
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!