不用javascript。..在wordpress下。。是不是有些不可思议~嗯嗯

一切的起源请点此

其实某猫说错了。。。nginx和apache下。。。rewrite是不会匹配query string的。。。这个是lighttpd的rewrite和nginx之类的最大区别了。。。大概。。。额。。。我也不知道了呢。。

所以直接套用绝对是失败的~嗯嗯

这个也误导了我很久。。。直到翻到某文章才顿时醒悟。。。

nginx。。。if很好使。。。有一个变量是专门用于匹配query string的~$args

使用示例:【还是为了让cos html cache和seo super comments兼容】

if ($args ~ cid=([0-9]+)){

rewrite (.*) /index.php;

}