我正在创建wordpress CMS,我在一个父页面下添加了多个页面。我正在为一个页面的所有子页面生成链接,然后当用户单击链接时,他们应该能够打开子页面。然而,当我点击链接时,索引页面就会打开,并且不会显示子页面内容。可能是由于使用了。htaccess文件。我对htaccess一无所知。有什么帮助吗?
<?php
$pages = get_pages( array( \'child_of\' => $post->ID, \'sort_column\' => \'post_date\', \'sort_order\' => \'desc\' ) );
foreach ($pages as $page) {
?>
<div class="contentarea">
<div class="leftside"><img alt="" src="http://zom.jtechsolutions.co/wp-content/themes/zone/images/pic_1.jpg" /></div>
<div class="rightside">
<h2><?php echo $page->post_title; ?></h2>
<?php echo substr(strip_tags($page->post_content),0,50); ?>
<a href="<?php echo get_post_permalink($page->ID); ?>">Read More...</a>
</div>
</div>
<?php
}
?>
。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