Lighttpd开启伪静态跳转没啥说的,直接在配置文件里加上mod_rewrite模块就好,至于apache其实也是非常简单的,开启模块后配置文件里改几个参数就好。
首先,开启rewrite模块。
Command代码
- a2enmod rewrite
接着,修改配置文件,支持.htaccess,我的是默认安装的修改配置文件
Command代码
- vi /etc/apache2/sites-enabled/000-default
查找AllowOverride参数,将None改为all
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
改为
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
</Directory>
改为
<Directory />
</Directory>
好了,现在可以直接把rewrite规则写到.htaccess下啦。