nginx下WordPress伪静态规则

nginx下Wordpress固定链接的伪静态规则其实特别简单,在nginx配置文件nginx.conf的location段添加一行即可.

1
vim /usr/local/nginx/conf/nginx.conf

在server容器中添加下面这几行

1
2
3
4
location /  
{
try_files $uri $uri/ /index.php?q=$uri&$args;
}

接着重启nginx

1
/usr/local/nginx/sbin/nginx -s reload

原文链接地址:nginx下WordPress伪静态规则