服务器学习笔记(Apache2 mod_rewrite配置)
在WordPress中改了下固定链接,想到要用 .htaccess …缺发现服务器根本没配置mod_rewrite,在百度找了一大堆没用的,终于研究出一下解决方案:
首先在服务器上启用 mod_rewrite:
sudo a2enmod rewrite
然后修改 /etc/apache2/conf-available/security.conf 文件,加入以下代码:
<Directory /var/www>
Options FollowSymLinks
AllowOverride All
</Directory>
近期评论