2012-12-30 121 views
0

我有一個博客網頁,意思是當你點擊'閱讀更多'或博客標題時,它會在單獨的頁面中打開該博客閱讀。然而,當我點擊這兩個東西我得到以下信息:固定鏈接不能正常工作

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> 

我在哪裏去了?

+0

看到我下面的更新... –

回答

1

你應該嘗試刪除esc_url ...
除了移動</h8>a標籤

<a href="<?php the_permalink(); ?>"><h8>READ MORE</h8></a> 

UPDATE

讓調試,把這個在您的wp-配置中:

define('WP_DEBUG', true); 
define('WP_DEBUG_LOG', true); // creates and update wp-content/debug.log 
define('WP_DEBUG_DISPLAY', true); 
@ini_set('display_errors', 1); 

在scre中獲取錯誤信息恩,這是一個發展階段,對吧?

+0

沒有打破了整個頁面。刪除所有帖子 – Louismoore18

+0

@ louismoore18它是在線檢查它更接近?該問題似乎存在於目標頁面中,而不是永久鏈接中。你能看到服務器的error_log嗎?在那裏你有所有的信息,你需要趕上bug ... –

+0

http://www.louismoore.net/wordpress/然後單擊標題或閱讀更多 – Louismoore18