Changing Old WordPress permalink structure on Nginx

How to change WordPress permalink structure from /%year%/%monthnum%/%day%/%postname%/ to /%postname%/ with Nginx. rewrite “^/[0-9]{4}/[0-9]{2}/[0-9]{2}/([a-z0-9\-/]+)” http://www.example.com.com/$1; This would be included in your sites-available conf or which ever conf files handling this. My approach is to maintain a conf file strictly for … Continued

Installing Gzip on Nginx Server

How to Configure Gzip Compression on Nginx Server If you’re familiar with Nginx this configuration will be a breeze. All you have to do is open your nginx.conf file and add the following code in the http section. Here’s another article … Continued

WordPress Nginx Server Configuration Files

Example File for a WordPress + Nginx Server Configuration You can use these files for a high perfomrance WordPress server configuration. The configuration uses Nginx, Varinish caching and the W3 Total Cache Plugin. The Github page also contains a link … Continued