所有URL重定向至主页

时间:2014-05-16 作者:muttley91

每当我尝试访问我的站点内的页面时,例如mysite。com/wp登录。php,它重定向到mysite。com。如果我放置www.mysite,它不会重定向。然而,com。这是域配置问题还是WordPress问题?

2 个回复
SO网友:selfagency

另一种可能是您尚未生成永久链接/a。网站的htaccess文件。在Wordpress中,进入设置>永久链接,更新/保存链接结构。看看这是否有帮助。

SO网友:Smedley

试试这个我觉得对你有用

http://example.com/your-sub-dir/wp-login.php
我有一个类似的问题,我无法登录。看起来你只是错过了your-sub-dir URl中的一部分。我想问题可能出在你wp-login.php 文件,如果这让你进入管理很好,如果不让我知道,我会给你更多的方法,你可以尝试进入。

如果你能进去试试这个。转到案例retrievepassword 第节,位于此注释下:

// redefining user_login ensures we return the right case in the email
// Replace: 
$user_login = $user_data["user_login"];

// With: 
$user_login = $user_data->user_login;

结束

相关推荐

get_delete_post_link redirect

我使用它来允许用户删除自己在我的网站前端的帖子:<a onclick=\"return confirm(\'Move this post to the trash? You can restore it later.\');\" href=\"<?php echo get_delete_post_link($postid); ?>\">Trash Post</a> 问题是,这刷新了当前页面,并向URL添加了一些查询参数(trashed=1,ids=123)。我