|| 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:
|
1 2 3 4 |
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?q=$1 last;
break;
} |
so on nginx.conf / vhost website like:
|
1 2 3 4 5 6 7 8 9 10 |
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
|
1 |
# /etc/init.d/nginx restart |