如何在Ubuntu 16.04安裝LAMP伺服器並將www文檔根目錄新增至使用者家
答案1
安裝 LAMP 伺服器:
sudo apt-get install lamp-server^
啟用userdir
模組:
sudo a2enmod 使用者目錄
在使用者目錄中啟用 PHP 執行:
sudo nano /etc/apache2/mods-available/php7.conf
(如果你使用PHP5,則為php5.conf)
評論這部分:
#<IfModule mod_userdir.c>
# <Directory /home/*/public_html>
# php_admin_flag engine Off
# </Directory>
#</IfModule>
按Ctrl+X儲存
啟用目錄清單:
須藤納米 /etc/apache2/apache2.conf
添加這個:
<Directory /home/*/public_html/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
按Ctrl+X儲存
重新啟動阿帕契:
service apache2 restart
現在將你的 php 檔案放入/home/你的名字/public_html目錄並轉到
http://localhost/~你的名字從您的網頁瀏覽器。