暴风雨
是的,暴风雨.
来到公司,只走了200米左右,下身全湿了.幸福的是,公司备有拖鞋
补充,最近电影:
[洛丽塔].Lolita.1997
[告别昨日].Breaking.Away.1979.XviD.AC3.WAF
监狱生活.Felon.LIMITED.PROPER.DVDRip.XviD-DMT
[拯救大兵瑞恩].Saving.Private.Ryan.1998.HDRip.XviD
[荒岛余生]Cast.Away.2000.iNT.DVDRip.XviD-NDRT
Roman Holiday Special Collector's Edition
还有凤凰台最近在播的 [BBC.美丽中国].BBC.Wild.China.Ep4
网球王子,(别BS,哈哈哈) 经过半个月电驴的努力,终于,下完80%啦, 48集啊.
这是我来珠海一个半月后的第一篇blog,真懒!
nginx的wordpress 及DZ论坛rewrite规则
wordpress 2.*版本:
location / {
if (!-e $request_filename) {
rewrite ^([_0-9a-zA-Z-]+)?(/wp-.*) $2 last;
rewrite ^([_0-9a-zA-Z-]+)?(/.*\.php)$ $2 last;
rewrite ^ /index.php last;
}
}
Discuz! 6.1.*版本:
location /{
rewrite ^/archiver/((fid|tid)-[\w\-]+\.html)$ /archiver/index.php?$1 last;
rewrite ^/forum-([0-9]+)-([0-9]+)\.html$ /forumdisplay.php?fid=$1&page=$2 last;
rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /viewthread.php?tid=$1&extra=page%3D$3&page=$2 last;
rewrite ^/space-(username|uid)-(.+)\.html$ /space.php?$1=$2 last;
rewrite ^/tag-(.+)\.html$ /tag.php?name=$1 last;
break;
}