我知道这个问题在这里被问了很多次。但所有的答案都解决不了我的问题。
当我尝试通过wordpress-admin登录到我的站点时,比如mysite.com/ When,它会给我一个错误“这个网页有一个重定向循环”。但是当我尝试mysite.com/ when /index.php时,它工作得很好。
对我也不起作用。
请帮帮我。我还能做什么?有人能给我建议吗?
发布于 2014-03-10 07:13:05
在functions.php文件中插入此代码
function admin_default_page() {
return 'http://staging.bestbodybootcamp.com/wp-admin/index.php';
}
add_filter('login_redirect', 'admin_default_page');发布于 2014-03-10 06:11:31
您尚未指定permalink设置为“post名称”或“默认值”,如果是默认的,请更改为post名称
https://stackoverflow.com/questions/22293085
复制相似问题