http 500 error,沒有畫面
檔案無法上傳
https://stackoverflow.com/questions/34836602/laravel-uploading-file-unable-to-write-in-directory
網站http 404 error或是首頁點選超連結後出現http 404 error
編輯
/etc/apache2/apache2.conf
加入或檢查Directory設定
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride all
Require all granted
</Directory>
Domain name 設定
DNS設定
在購買的網域中設定DNS紀錄A類新增
主機自訂 ex: test01
指向:server ip
Server端設定
/etc/apache2/sites-enabled下編輯你的.conf
<VirtualHost *:80>
ServerName test01.xxx.com
DocumentRoot /var/www
</VirtualHost>