解決安裝 ownCloud 時出現的安全性警告

使用瀏覽器連上安裝好的網址,會出現下圖的狀況,有安全性警告
[@more@]主要是在 Apache Web Server 預設沒有開啟支援 .htaccess 的功能
修改 Apache Web Server 設定檔,加入下面的設定內容
# vim /etc/httpd/conf/httpd.conf
<Directory “/var/www/html/owncloud”>
    AllowOverride All
</Directory>
重新啟動 Apache Web Server
# service httpd restart

再次連線時,就不會出現安全性警告