Ubuntu環境下apache 目錄啟動.htaccess 功能
Temperature: 0 °C
.htaccess 檔案是目錄層面的設定檔,可以對目錄變更 Apache 的設定。
要使用 .htaccess 檔案,需要在 Apache 的設定檔 (httpd.conf 或 apache2.conf) 開啟使用,否則 Apache 是不會處理 .htaccess 的設定的。
Ubuntu 環境下路徑需編輯 /etc/apache2/apache2.conf
$ sudo vi /etc/apache2/apache2.conf
找到以下字串
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
將
AllowOverride None
更改為
AllowOverride All
後儲存,重啟Apache讓設定檔生效
sudo service apache2 restart
以上紀錄~
#Ubuntu #htaccess #Apache #httpdconf #apache2conf