.htaccess 301内页重定向到首页怎么写
.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>
.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>