Improper 404 Error Handling Fix For WordPress 2.5

我在改用固定連結的方式在我的部落格,可世醫值發生404找不到網頁的錯誤,後來在Improper 404 Error Handling Fix For WordPress 2.5發現原來是Woedpress 2.5.1的一個錯誤,Orz!

You can apply the fix manually by editing the /wp-includes/query.php file. The offending code is on line 922:

if ( ('page' != get_option('show_on_front') ) || ( $reqpage != get_option('page_for_posts') ) ) {

Change it to:

if ( ('page' != get_option('show_on_front') ) || ( $reqpage !== get_option(’page_for_posts’) ) ) {

 

感謝你看到這裡,很快就可以離開了,但最好的獎勵行動就是按一下幫我分享或留言,感恩喔~

點我分享到Facebook

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *