不管怎么都破坏文件头,头疼
按月归档:三月 2010
中国美女与日本美女的一生
发布于 三月 5, 2010
中国:父母和外祖父母多少还是开心的,但祖父母一定是失望的。
日本:女孩得到全部家族成员的祈福。
4岁
中国:参加各种琴棋书画幼儿班。
日本:同邻居家的小男孩一起给受伤的小狗包扎伤口。
WordPress fetch_feed 调用rss
发布于 三月 3, 2010
酱子即可,不过wordpress默认缓存12个小时,还的等半天,不及时。
<?php $feed = fetch_feed('http://014.cc/feed'); $items = $feed->get_items(0,5);Nginx中wordpress重写规则
发布于 三月 2, 2010
下面介绍2种方法实现对wordpress的 URLs 的可读性和对搜索引擎的友好
使用重写方式
location / {
index index.php;
if (!-e $request_filename){
rewrite ^ /index.php?q=$uri&$args;
}
}
基于try_files的url重置
location / {
index index.php;
try_files $uri $uri/ /index.php?q=$uri&$args;
}