在Guest House的Lobby上网,用的是无线网络,速度真的好慢,一个网页都要N久才能打开,真的是领教了这边的网速。没有把移动硬盘带过来,真失策,给小熊的QQ留言了,看看能不能邮寄过来,怪自己。
本来不想上网,受不了网速,可外面一直在下雨,电视信号都有点受影响。这两天手机找不到了,也不知道放哪里了,真粗心。同屋的印度尼西亚小伙子正在斋戒fasting,天天啥都不能吃,太辛苦了,人家的信仰真的好虔诚,每天都去祈祷。
今天就写这么多吧!
Filed in: 代码(Code) , by sendove on 2008, October 21, 8:53 PM , Comments:0
在Guest House的Lobby上网,用的是无线网络,速度真的好慢,一个网页都要N久才能打开,真的是领教了这边的网速。没有把移动硬盘带过来,真失策,给小熊的QQ留言了,看看能不能邮寄过来,怪自己。
本来不想上网,受不了网速,可外面一直在下雨,电视信号都有点受影响。这两天手机找不到了,也不知道放哪里了,真粗心。同屋的印度尼西亚小伙子正在斋戒fasting,天天啥都不能吃,太辛苦了,人家的信仰真的好虔诚,每天都去祈祷。
今天就写这么多吧!
Filed in: 代码(Code) , by sendove on 2008, September 13, 6:09 PM , Comments:0
http://feeds.qzone.qq.com/cgi-bin/cgi_rss_out?uin=QQ号码
把QQ号码做相应的修改即可,比如:
Filed in: 代码(Code) , by sendove on 2008, July 31, 10:37 AM , Comments:0
在网上看到的,丰富了部分功能,拿来参考一下,也许有天用得上。
Filed in: 代码(Code) , by sendove on 2008, July 18, 3:24 PM , Comments:0
# .htaccess main domain to subfolder redirect
# Copy and paste the following code into the .htaccess file
# in the public_html folder of your hosting account
# make the changes to the file according to the instructions.
RewriteEngine on
# Change yourdomain.com to be your main domain.
RewriteCond %{HTTP_HOST} ^(www.)?yourmaindomain.com$
# Change 'subfolder' to be the folder you will use for your main domain.
RewriteCond %{REQUEST_URI} !^/subfolder/
# Don't change this line.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change 'subfolder' to be the folder you will use for your main domain.
RewriteRule ^(.*)$ /subfolder/$1
# Change yourdomain.com to be your main domain again.
# Change 'subfolder' to be the folder you will use for your main domain
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?yourmaindomain.com$
RewriteRule ^(/)?$ subfolder/ [L]