how to forward an aliased domain

23
Feb
0

RewriteEngine on
Options +FollowSymlinks

RewriteCond %{HTTP_HOST} cindyjimmerson.com$
RewriteRule ^(.*)$ http://leanhealthcarewest.com/$1 [R=301,L]

Filed under: Uncategorized

stop start restart apache plesk fedora core 8

23
Feb
0

go to /etc/httpd

httpd -k start

httpd -k restart

httpd -k stop

Filed under: Uncategorized

How to find a file in unix / linux

23
Feb
0

this will search the entire file structure for the file httpd.include
find / -name “httpd.include” -print

Filed under: Uncategorized

find out if you have a 64 or 32 bit processor on linux / unix

18
Feb
0

uname -i

Filed under: Uncategorized

unix / linux list top 50 biggest directories in /var

17
Feb
0

du -a /var | sort -n -r | head -n 50

Filed under: Uncategorized