wordpress 고정 링크 페이지 404 오류 해결 방법

wordpress 가 '고정 링크' 를 설정 한 후 페이지 404 오류 해결 방법
Nginx 솔 루 션:
location / {} 에 설정 추가: \ # 다음 명령 을 추가 하면 tryfiles $uri u r i / / i n d e x . p h p ? uri/ /index.php? uri//index.php?args; 수정 이 완료 되면 Nginx 서버 를 다시 시작 합 니 다.
   #      404
   location / {
    try_files $uri $uri/ /index.php?$args;
    }
#   nginx
service nginx restart

전체 코드
server
{
    listen 80;
    server_name zhaoyang.space;
    index index.php index.html index.htm default.php default.htm default.html;
    root /www/wwwroot/zhaoyang.space;
    
    #SSL-START SSL    ,              404  
    #error_page 404/404.html;
    #SSL-END
    
    #ERROR-PAGE-START       ,    、     
    error_page 404 /404.html;
    error_page 502 /502.html;
    #ERROR-PAGE-END
    
    #PHP-INFO-START  PHP    ,       
    include enable-php-56.conf;
    #PHP-INFO-END
    
    #REWRITE-START URL      ,                  
    include /www/server/panel/vhost/rewrite/zhaoyang.space.conf;
    #REWRITE-END
    
    location / {
    try_files $uri $uri/ /index.php?$args;
    }
    
    #          
    location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
    {
        return 404;
    }
    
    #    SSL          
    location ~ \.well-known{
        allow all;
    }
    
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
        expires      30d;
        error_log off;
        access_log /dev/null;
    }
    
    location ~ .*\.(js|css)?$
    {
        expires      12h;
        error_log off;
        access_log /dev/null; 
    }
    access_log  /www/wwwlogs/zhaoyang.space.log;
    error_log  /www/wwwlogs/zhaoyang.space.error.log;
}

인터넷 에 퍼 지 는 방법 은 / etc / nginx / nginx. conf 파일 의 location / {} 에 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;} 특히 주의: 이 설정 방법 은 유효 하지 않 습 니 다. 유효 하지 않 습 니 다. 유효 하지 않 습 니 다.
1.2.2 아파 치 솔 루 션:
/ etc / httpd / conf / httpd. config 파일 원인 1: 아파 치 의 rewrite 모듈 이 열 리 지 않 았 습 니 다. 이 줄 앞 에 있 는 \ # 번 호 를 제거 하면 됩 니 다 LoadModule rewritemodule modules/mod_rewrite. so 원인 2: AllowOverride 를 사용 하지 않 음;서버 가 AllowOverride 를 열지 않 았 을 수도 있 습 니 다.httpd. config 의 AllowOverride 가 None 로 설정 되 어 있 으 면 htaccess 는 무 시 됩 니 다.다음 두 곳 의 위 치 를 찾 아 수정: Options FollowSymLinks AllowOverride All
service httpd restart

좋은 웹페이지 즐겨찾기