.htaccess 301内页重定向到首页怎么写
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{http_host} ^xxx.com [NC]
RewriteRule ^(.*)$ http://www.xxx.com/$1 [L,R=301]
</IfModule>
RewriteCond 这个是条件的意思吗?
比如把 重定向到首页应该怎么写
让更多人参与回答