如何在Wordpress中省略index.php?

时间:2015-12-29 10:54:46

标签: php wordpress redirect

是否有可能在Wordpress中省略index.php?我的项目仅使用页面(page.php),我使用Lingotek生成多种语言。

  1. 如果我输入 http://project/en/ ,则应显示首页但不显示任何内容。 (我想解决此问题)

  2. 如果我输入 http://project/ 直接转到 http://project/en/home

  3. 我的想法是将index.php直接重定向到Front Page。你会怎么做?

1 个答案:

答案 0 :(得分:0)

在index.php中

,您可以将您的页面称为“主页”:

<?php get_header(); ?>

    <?php $query = new WP_Query('pagename=home'); if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post(); ?>

        <?php the_content();?>

    <?php } } wp_reset_postdata(); ?>

<?php get_footer(); ?>