首先打开httpd.conf,找到rewrite.so,需要开启rewrite.so模块。
<Directory>目录必须开启AllowOverride All,否则无法读取.htaccess文件;
<Directory "D:/wamp/www/test">
Options FollowSymLinks
AllowOverride All
Order deny,allow
Allow from all
</Directory>
其次在虚拟主机目录下建立.htaccess文件,添加重写规则,如下
RewriteEngine on
RewriteCond %{HTTP_HOST} ^baidu.com
RewriteRule ^(.*)$ http://www.baidu.com/$1 [R=permanent,L]
如果每个虚拟主机都需要重写则每个目录下都要有.htaccess文件。