您的位置:首页 > 运维架构 > Nginx

After move WordPress modify permalink some page display 404 in Nginx.

2016-11-25 11:31 330 查看
In nginx conf folder create wordpress.conf and Paste below code:

location / {
try_files $uri $uri/ /index.php?$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;

 My nginx config file locaiton:  data/server/nginx/conf.   below root line,add ( or direct paste above code below root line):

include wordpress.conf;

And restart nginx it will effective.

service nginx restart
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息