wordpress重定向到主页和seo

时间:2015-03-26 13:23:32

标签: html wordpress .htaccess redirect seo

我创建了一个包含5-6页的网站(html,css等),让我们说 example.com

现在我必须添加许多其他页面,我不确定是否更好地使用 WordPress 或将所有这些页面添加为纯HTML

如果我将使用WordPress,我会将其安装在 example.com/page 等子目录中。

带有“固定链接”的Wordpress可能很有用,但在这种情况下,我应该设置从wordpress主页到我的html主页的重定向。例如:

When someone go on **example.com/page** (wordpress home) 
will be redirected to **example.com** (html homepage)

Instead, if someone go on **example.com/page/my-page**
should see the wordpress page normally.

它有可能吗?哪个是SEO的最佳解决方案(html静态页面,或重定向到主页的wordpress,单独的站点地图等)?

1 个答案:

答案 0 :(得分:0)

您可以使用is_home()函数或is_front_page()来执行此操作,具体取决于您设置设置的方式。

<?php if(is_front_page()){
    /** your code for redirecting to html home page. **/
}
?>

这将做你想要的。