Posts Tagged ‘rewrite’
Nginx rewrite rules for vBulletin + vbSEO
Friday, January 16, 2009 11:56 1 CommentI searched on google and I think never heard about it. I actually have implement nginx + vbseo on the forum that I maintained. You can see them here and here How to create a nginx rewrite rule that is working for vBulletin and vbSEO plugins?
Nginx Rewrite rules for WordPress MU with Wp Super Cache plugin enabled
Thursday, November 27, 2008 12:32 3 CommentsI’ve spending my time to search how wordpressMU on nginx can support WP Super Cache plugin By default they only giving us the rewrite rules for Apache Default nginx rewrite rules without WP Super Cache plugin rewrite ^.*/files/(.*) /wp-content/blogs.php?file=$1; if (!-e $request_filename) { rewrite ^.+?(/wp-.*) $1 last; rewrite ^.+?(/.*\.php)$ $1 last; rewrite ^ /index.php last; [...]