Ubuntu 25.04
Sponsored Link

Apache2 : Use PHP Scripts2025/04/22

 

Configure Apache2 to use PHP scripts.

[1] Install PHP and PHP module for Apache2.
root@www:~#
apt -y install php php-mbstring libapache2-mod-php
[2] Configure Apache2.
root@www:~#
vi /etc/php/8.4/apache2/php.ini
# line 966 : uncomment and add your timezone

date.timezone =
"Asia/Tokyo"
root@www:~#
systemctl reload apache2
# create a test page

root@www:~#
echo '<?php phpinfo(); ?>' > /var/www/html/info.php

[3] Verify to access to PHPInfo test page from any client computer.
Matched Content