ubuntu 配置Apache2 域名重写 .htaccess无效
首先按照网上的资料修改apache配置以及添加.htaccess
需要开启Apache2的rewrite模块
打开sudo vi /etc/apache2/apache2.conf 将文件中的AllowOverride None改为AllowOverride All,保存
sudo a2enmod rewrite
重启服务
sudo service apache2 restart
或者
sudo /etc/init.d/apache2 restart