【发布时间】:2019-05-17 04:13:14
【问题描述】:
我正在尝试根据特定的查询字符串进行重定向:
https://foo.com/wp-login.php?action=register 到 https://foo.com/account/
location ~* /(wp-login\.php) {
if ($query_string = "action=register") {
rewrite ^ https://foo.com/account/ permanent;
}
limit_req zone=xwplogin burst=1 nodelay;
#limit_conn xwpconlimit 30;
auth_basic "Private";
#auth_basic_user_file /home/nginx/domains/foo.com/htpasswd_wplogin;
include /usr/local/nginx/conf/php-wpsc.conf;
# https://community.centminmod.com/posts/18828/
#include /usr/local/nginx/conf/php-rediscache.conf;
}
【问题讨论】:
-
问题是什么?你得到了什么?
-
什么都没有发生,没有重定向发生。
标签: regex wordpress nginx redirect