第一步:先执行加载rewrite模块
sudo a2enmod rewrite
第二步:修改Apache2.conf
sudo nano /etc/apache2/apache2.conf
寻找到以下代码:
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
修改为
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
第三步:重启apache2
sudo service apache2 restart