我错误地在我的根目录中安装了一个php脚本,其中有wordpress可用。之后我的所有永久链接都被改变了。在我通过ftp修改.htaccess文件和权限文件后,现在 my site网站几乎没问题了。
仍然,我无法登录管理面板。当我提供管理员用户名和密码时,我被重定向到的网址是http://investorsbd.com/index.php/wp-login.php(额外的index.php已经显示)并且没有找到索引php登录的内容。
如何删除额外的index.php以登录我的wordpress管理控制面板?
答案 0 :(得分:0)
使用以下代码修改.htaccess文件
#RewriteRule ^(.*)-c-(.*).html$ index.php?cPath=$2&%{QUERY_STRING}
否则尝试此代码
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /dwellingventures/dwelling/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . http://investorsbd.com/index.php [L]
</IfModule>
# END WordPress
希望它可以帮到你
答案 1 :(得分:0)
这是一个临时修复,但如果您单击忘记密码链接然后输入您的电子邮件然后登录它将起作用。
更持久地,我们发现直接链接到wp-login而不是wp-admin更容易。