我正在从apache2迁移到Nginx.我无法弄清楚如何重写wordpress的重写规则.
这实际上是我的配置文件
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
PHP$- [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.PHP [L]
wordpress
你能帮我么?谢谢 :)
最佳答案
你应该阅读http://wiki.nginx.org/WordPress
原文链接:https://www.f2er.com/nginx/434675.html例如
location /blog {
try_files $uri $uri/ /blog/index.PHP?$args;
}
location ~ \.PHP${
fastcgi_split_path_info ^(/blog)(/.*)$;
}