Wordpress Permalink on Nginx

Permalink wordpress
0. Go to Permalinks
1. Common settings – Custom Structure : /%postname%/ or /%category%/%postname%/
2. Save Changes

Setup nginx for permalink on wordpress:

add this line on nginx.conf or vhost conf file:


location / {
root /var/html;
index index.php index.html index.htm;

# permalink wp
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?q=$1 last;
break;
}
}


Restarting nginx

# /etc/init.d/nginx restart

0 comments:

Post a Comment