rewrite模块的应用我用在wordpress上,用于固定链接的转换
分两步:
1. apache 加载rewrite模块
sudo a2enmod rewrite
2. 使htaccess文件生效
修改/etc/apache2/sites-availabe/default
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All (None 改为All)
Order allow,deny
allow from all
</Directory>
最后重启apache
sudo /etc/init.d/apache2 restart 即可。