我在谷歌上有很多链接,比如:
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>