doingword.com

Archive for October, 2008

Using wget to download contents of entire ftp directory

Friday, October 17th, 2008
wget -r  ftp://127.0.0.1/*  --ftp-user=user --ftp-password=password
[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]

Posted in Linux, tip | No Comments »

redirect domain with .htaccess

Monday, October 13th, 2008

Redirect domain with .htaccess

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.domain.com$
RewriteRule ^(.*) http://www.domain.com/$1 [QSA,L,R=301]
[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]

Posted in Apache, Php, SEO | No Comments »