1. 程式人生 > >Ubuntu16.04下apache2開啟對.htaccess支援

Ubuntu16.04下apache2開啟對.htaccess支援

具體操作是:
sudo a2enmod
終端提示可以使用的模組名稱,此時輸入

rewrite
提示成功載入rewrite模組,然後修改apache2的配置檔案

cd /etc/apache2
sudo vim apache2.conf

然後將
<Directory /var/www/>
Options Indexes FollowSymlinks
AllowOverride None
Require all granted

中的AllowOverride None改為AllowOverride All

然後重啟apache即可
sudo /etc/init.d/apache2 restart