programing

apache에서 nginx로: 워드프레스 다시 쓰기 규칙

lastmoon 2023. 3. 28. 22:29
반응형

apache에서 nginx로: 워드프레스 다시 쓰기 규칙

apache2에서 nginx로 이행할 거야워드프레스에 대한개서 규칙을 어떻게 고쳐 써야 할지 모르겠어요.

이것은 실제로 제 설정 파일입니다.

server {
        listen 80;    
        root /usr/share/nginx/blog.com/public_html;
        index index.html index.htm index.php;

        server_name blog.com www.blog.com;

        location / {
                try_files $uri $uri/ /index.html;

        }

        location /doc/ {
                alias /usr/share/doc/;
                autoindex on;
                allow 127.0.0.1;
                allow ::1;
                deny all;
        }

        location ~ .php$ {
                fastcgi_pass 127.0.0.1:9000;

                fastcgi_param  SCRIPT_FILENAME /usr/share/nginx/blog.com/public_html$fastcgi_script_name;
                fastcgi_index index.php;
                include fastcgi_params;
        }

}

php5-fpm을 사용하고 있습니다.

그리고 이것이 추가하고자 하는 규칙입니다.

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>

# END WordPress

저 좀 도와 주시겠어요?감사합니다:)

http://wiki.nginx.org/WordPress 를 참조해 주세요.

예.

    location /blog {
            try_files $uri $uri/ /blog/index.php?$args;
    }

    location ~ \.php$ {
            fastcgi_split_path_info ^(/blog)(/.*)$;
    }

언급URL : https://stackoverflow.com/questions/15568781/from-apache-to-nginx-wordpress-rewrite-rule

반응형