我将我的网站复制到实时主机,但是当我尝试访问管理仪表板时,无法访问 URL。
我也将 .htacces 文件更改为这样,但仍然显示错误:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RedirectMatch 301 ^/([0-9]{4})/([0-9]{2})/([0-9]{2})/(?!page/)(.+)$
http://backstagewhisp.local/$4
RewriteEngine On
RewriteBase /home/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /home/index.php [L]
</IfModule>
# END WordPress
有人可以给我建议来解决我的错误吗?谢谢。