반응형
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
반응형
'programing' 카테고리의 다른 글
ng-include src를 동적으로 구축하려면 어떻게 해야 합니까? (0) | 2023.03.28 |
---|---|
플라스크에서 ajax 호출을 사용하여 파일을 업로드하는 방법 (0) | 2023.03.28 |
React App 만들기: index.html 환경변수를 사용합니다. (0) | 2023.03.28 |
'string'은 유형 '{}'을(를) 인덱싱하는 데 사용할 수 없습니다. (0) | 2023.03.28 |
ORA-12516, TNS: 리스너가 사용 가능한 핸들러를 찾을 수 없음 (0) | 2023.03.28 |