将root index.php重定向到子目录

时间:2015-02-26 13:13:43

标签: wordpress .htaccess mod-rewrite redirect

我已将wordpress安装到文件夹中,我想将root index.php重定向到wordpress文件夹而不使用

  

标题('位置:./ folder /');

或元重定向。 我想仅使用 .htaccess 规则重定向索引文件。我怎么能这样做?

修改

我表达自己很糟糕,我需要一种重定向但不是真正的重定向,因为使用重定向会导致Google出现问题。 所以我想提供 ./ folder / 而不是 index.php ./

2 个答案:

答案 0 :(得分:0)

使用此重定向

重定向301 /index.php /sub/index.php

答案 1 :(得分:0)

你的htaccess看起来应该是这样的

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

只需替换

RewriteBase /

RewriteBase /foldername