WordPress неверный редирект при доступе к wp-admin

У меня небольшая проблема.
Теперь я переношу свой сайт WordPress с Apache2 на Nginx.
Все отлично работает, но не админка.

Когда я пытаюсь получить доступ к ‘/ wp-admin’, у меня появляется следующее перенаправление:

http://domain.com/wp-login.php?redirect_to=http%3A%2F%2Fdomain.com%2Fwp-admin%2F&= 1 повторная аутентификация

После этого появляется пустая страница и больше ничего.
Я проверил конфигурацию PHP и образец test.php что-то печатает, чтобы он работал.
Что я делаю не так?

Вот мой конфиг Nginx:

server
{
listen 155.123.12.222:80;
server_name domain.com www.domain.com ;
access_log /var/log/nginx/domains/domain.com.log;
access_log /var/log/nginx/domains/domain.com.bytes bytes;
error_log /var/log/nginx/domains/domain.com.error.log;
root /home/admin/domains/domain.com/public_html;
index index.php index.html index.htm;

location / {
index index.php;
try_files $uri $uri/ /index.php?q=$uri&$args;
}

rewrite /wp-admin$ $scheme://$host$uri/ permanent;

location /wp-admin {
index index.php index.html index.htm;
try_files $uri /wp-admin/index.php?q=$uri&$args;
}

location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires 24h;
log_not_found off;
}location ~ /\. { access_log off; log_not_found off; deny all; }

location ~ \.php$
{
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
include /etc/nginx/fastcgi_params;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/nginx_limits.conf;
if (-f $request_filename)
{
fastcgi_pass unix:/usr/local/php56/sockets/admin.sock;
}
}

location ~ /\.ht
{
deny all;
}
include /etc/nginx/webapps.conf;
}

0

Решение

Попробуйте удалить следующие строки:

rewrite /wp-admin$ $scheme://$host$uri/ permanent;
location /wp-admin {
index index.php index.html index.htm;
try_files $uri /wp-admin/index.php?q=$uri&$args;
}
0

Другие решения

Хорошо, я нашел решение.
Я включил режим DEUB в wp-config.php. В каком-то плагине была плохая конфигурация, поэтому я изменил ее.

В любом случае, спасибо за внимание, ребята.

0

По вопросам рекламы [email protected]