0

我在谷歌上有很多链接,比如:

www.domain.com/wpsite/galleries/ www.domain.com/wpsite/hello-world/

如果用户来自谷歌,我如何使用 .htaccess 文件删除这个 WPSITE?需要这样的链接:www.domain.com/galleries/ www.domain.com/hello-world/

我的 .htaccess 代码:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
4

1 回答 1

0

将此行放在 RewriteBase 行的下方。

RewriteRule ^wpsite/(.*)$ /$1 [L,R=301,NC]

请记住,它不会立即从搜索引擎中删除所有旧条目。然而,由于使用规则,R=301它最终会使搜索引擎从缓存中删除旧条目。

于 2013-05-31T03:33:12.733 回答