• 微信公众号:imwuji

3.1版首页重定向问题

分享到:新浪微博QQ空间微信豆瓣百度贴吧

31banshouyechongdingxiangwenti

在升级到WordPress 3.1后访问网站出现首页循环重定向,导致网站无法正常访问,此时浏览器一般提示“此网页包含重定向循环”。

方案一:
打开:wp-include/template-loader.php这个文件,在这个文件开头有这么一段代码:

/**

* Loads the correct template based on the visitor’s url

* @package WordPress

*/if ( defined('WP_USE_THEMES') && WP_USE_THEMES )

do_action('template_redirect');

我们只要将后面的一段代码去掉就可以了

if ( defined('WP_USE_THEMES') && WP_USE_THEMES )

do_action('template_redirect');

方案二:

打开wp-includescanonical.php,找到第一行代码

function redirect_canonical( $requested_url = null, $do_redirect = true )

将true改为false即可,如下

function redirect_canonical( $requested_url = null, $do_redirect = false )

方案三:

安装插件 http://wordpress.org/extend/plugins/permalink-fix-disable-canonical-redirects-pack/

 

你可以发表评论,并在保留原文地址及作者的情况下引用到你的网站或博客。
原创文章转载请注明: 3.1版首页重定向问题 | 无忌
关键字:
【上一篇】
【下一篇】