Naveed A. Khan
New Pleskian
- Server operating system version
- Ubuntu 20.04.4 LTS
- Plesk version and microupdate number
- Plesk Obsidian 18.0.45 Update 2
I am getting ERR_TOO_MANY_REDIRECTS on my WordPress Admin URL/Dashboard. The rest of the website works just fine, the only issue is I can't login to my WP Dashboard.
I am using nginx only configuration with FPM served by nginx. It works fine in proxy mode!

For permalinks I convert my htaccess to this nginix directives:
I am using nginx only configuration with FPM served by nginx. It works fine in proxy mode!

For permalinks I convert my htaccess to this nginix directives:
Code:
if (!-f $request_filename){
set $rule_2 1$rule_2;
}
if (!-d $request_filename){
set $rule_2 2$rule_2;
}
if ($rule_2 = "21"){
rewrite /. /index.php last;
}