是否有可能在Wordpress中省略index.php?我的项目仅使用页面(page.php),我使用Lingotek生成多种语言。
如果我输入 http://project/en/ ,则应显示首页但不显示任何内容。 (我想解决此问题)
如果我输入 http://project/ 直接转到 http://project/en/home
我的想法是将index.php直接重定向到Front Page。你会怎么做?
答案 0 :(得分:0)
,您可以将您的页面称为“主页”:
<?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(); ?>