• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

Issue WordPress Too Many Redirect on WP-Admin directory

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!

ERR_TOO_MANY_REDIRECTS on HowtoHow.org

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;
}
 
Why did you have to rewrite the permalink rules in the .htaccess file to nginx rules? The WordPress Toolkit should take care of that by default.
If it didn't work, make sure the Custom Errors docs option is disabled:

 
Back
Top