我有一個博客網頁,意思是當你點擊'閱讀更多'或博客標題時,它會在單獨的頁面中打開該博客閱讀。然而,當我點擊這兩個東西我得到以下信息:固定鏈接不能正常工作
Server error The website encountered an error while retrieving mywebsite/wordpress/?p=20. It may be down for maintenance or configured incorrectly. Here are some suggestions: Reload this web page later. HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfil the request.
這裏是代碼:
<div class="box">
<?php while (have_posts()) : the_post(); ?>
<article>
<h2><a href="<?php esc_url(the_permalink()); ?>"<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<h7>BY LOUIS MOORE ON</h7> <time datetime="<?php the_time('Y-m-d'); ?>" pubdate><?php the_date(); ?> <?php the_time(); ?></time><?php the_content(); ?>
<a href="<?php esc_url(the_permalink()); ?>"/><h8>READ MORE</a></h8> </br>
</br><div class="h9"></div>
</article></br></br></br>
<?php endwhile; ?>
</div>
我在哪裏去了?
看到我下面的更新... –