我已将wordpress安装到文件夹中,我想将root index.php重定向到wordpress文件夹而不使用
标题('位置:./ folder /');
或元重定向。 我想仅使用 .htaccess 规则重定向索引文件。我怎么能这样做?
修改
我表达自己很糟糕,我需要一种重定向但不是真正的重定向,因为使用重定向会导致Google出现问题。 所以我想提供 ./ folder / 而不是 index.php 或 ./ 。
答案 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