WordPress的主页空白,但其他工作

时间:2019-03-25 17:00:07

标签: wordpress .htaccess redirect

我目前在我的wordpress文件夹中有这个.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

Redirect 301 / http://afh.asso.fr/presentation

我想将http://afh.asso.fr重定向到http://afh.asso.fr/presentation

使用当前的.htaccess文件怎么办?

非常感谢您的帮助,我真的很感激:)

另有说明: 我有这个运作良好的网站: https://afh.asso.fr/avec-lafh/qui-sommes-nous/histoire-de-lafh-en-video/

每个页面都可以。

但是http://www.afh.asso.fr不好(主页)。

如何将这个afh.asso.fr重定向到另一个页面,例如在.htaccess文件中自己指定url?

我已经有用于wordpress的.htaccess文件。

在此先感谢您的帮助!

2 个答案:

答案 0 :(得分:0)

请尝试以下操作:

Redirect 301 / /avec-lafh/qui-sommes-nous/presentation/

编辑: 看起来您也使用WordPress,是否可以将主页更改为可见页面呢?

  • 转到设置
  • 点击阅读
  • 选择要作为主页的页面。

答案 1 :(得分:0)

您可以在默认的WP Front Controller规则之前插入重定向规则:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteRule ^/?$ presentation [L,R=301]

RewriteRule ^index\.php$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

正则表达式^/?$将与登录页面匹配,并使用状态代码/presentation重定向到301