html 将WordPress管理员重定向到临时页面。适用于WP安装的迁移/迁移/迁移

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 将WordPress管理员重定向到临时页面。适用于WP安装的迁移/迁移/迁移相关的知识,希望对你有一定的参考价值。

# Add these lines to your .htaccess file and upload migrating.html alongside it
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} ^(.*)?wp-login\.php(.*)$ [OR]
RewriteCond %{REQUEST_URI} ^(.*)?wp-admin/(.*)$
#RewriteCond %{REMOTE_ADDR} !^123\.123\.123\.123$ #Add your IP address here if you want to whitelist it
RewriteRule ^(.*)$ /migrating.html [R=301,L]
</IfModule>
<!DOCTYPE html>
<html>
<head>
  <title>Migration in progress</title>
</head>
<body>
  <h1> Migration in progress</h1>
  <p>This site is currently undergoing migration to another server, and cannot be edited until migration is complete.</p>
  <p>Sorry for the inconvenience and thank you for you cooperation. </p>
  <p>See Roadside Dental Marketing support team for more info.</p>
</body>
</html>

以上是关于html 将WordPress管理员重定向到临时页面。适用于WP安装的迁移/迁移/迁移的主要内容,如果未能解决你的问题,请参考以下文章

WordPress 管理页面重定向到主页

wordpress 和 htaccess 301 重定向没有管理员

WordPress用户登录后重定向到指定页面

WordPress + CloudFront 灵活 SSL 最终进入重定向循环 (https)

如何重定向到 Wordpress 中的不同管理页面?

Wordpress登录页面重定向到普通用户的Woocommerce我的帐户页面