首页 > 问答 > .htaccess 301内页重定向到首页怎么写

.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 RewriteCond 这个是...

.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 这个是条件的意思吗?

###

比如把 重定向到首页应该怎么写

本文来自投稿,不代表微盟圈立场,如若转载,请注明出处:https://www.vm7.com/a/ask/104073.html