我正在尝试将 wordpress 默认登录 (wp-logiin.php) url 重定向到登录,但不知何故它不起作用。我以前从未做过这个 .htaccess 重写规则,所以不知道它是如何工作的。
# BEGIN WordPress
RewriteRule ^signin$ http://localhost/newsite/wp-login.php [NC,L,R]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /newsite/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /newsite/index.php [L]
</IfModule>
# END WordPress
大大大大谢谢