For wordpress pretty permalinks to work, you need to add this to your nginx.conf file where the wordpress directory is /wordpress:
location /wordpress {
index index.php index.html index.htm;
try_files $uri $uri/ /index.php?$args;
}
location /wordpress {
index index.php index.html index.htm;
try_files $uri $uri/ /index.php?$args;
}
No comments:
Post a Comment