Nginx 환경 에서 워드 프레스 배경 에 'Wp - Admin' 경로 가 부족 합 니 다.

1162 단어
nginx 환경 에서 접근 할 때 워드 프레스 백 엔 드 를 방문 하면 오류 가 발생 합 니 다.경로 가 wp - admin 이 빠 진 것 을 자세히 발견 하면 해결 방법 은 간단 합 니 다. / usr / local / nginx / conf / ordpress. conf 파일 에서 수정 합 니 다.
location / {
index index.html index.php;
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
}

이 코드 를 찾 은 후 가입:
rewrite /wp-admin$ $scheme://$host$uri/ permanent;

그리고 nginx 환경 을 다시 시작 하면 됩 니 다.
다음으로 전송:https://www.cnblogs.com/doocii/p/5080027.html

좋은 웹페이지 즐겨찾기