TIP

홈페이지 주소 자동으로 이동.

[code]<html>

<head>

<title></title>

<script language="javascript">

location.href="이동할 주소" ;

</script>

</head>

<body>

</body>

</html>[/code]  

[code]<html>

<head>

<title></title>

<meta http-equiv="refresh" content="0; url=이동할 주소"></meta>

</head>

<body>

</body>

</html>[/code]

 

robots.txt 설정

로봇 허용

[code]<meta name="robots" content="index,follow" />[/code]

로봇 차단

[code]<meta name="robots" content="NOINDEX, NOFOLLOW" />[/code]

ftp, 텔넷, ssh에서 특정 디렉토리 삭제 안될때...

텔넷에서 rm -rf로도 삭제가 안될 경우


[code]<?

$cmd = "rm -rf 삭제할 파일또는 디렉토리";

@exec($cmd);

echo "삭제";

?>[/code]

위 소스를 test.php 로 저장한 후 계정에 업로드 하고

웹에서 실행시켜주면 바로 삭제됨.

내 홈페이지 이미지 무단 링크 방지

.htaccess


[code]PHP_FLAG register_globals ON

SetEnvIFNoCase Referer "Mydomain.com" pass

SetEnvIFNoCase Referer "^$" pass

<FilesMatch ".(jpg|gif|png|bmp)$">

Order deny,allow

deny from all

allow from env=pass

</FilesMatch> [/code]

텔넷명령어(압축, 백업, 복구)

압축파일 풀기

===========

unzip 파일명.zip

gzip -d 파일명.gz

tar xfz 파일명름​.tgz​

tar -zxvf 파일명​.tar.gz



폴더백업

========

tar cvzf 파일명.tar.gz 폴더명



DB백업

======

mysqldump -u User_ID -p User_database > 파일명.sql (쿼리를 저장할 화일명)

 


DB복구

======

mysql -u User_ID -p User_databasee < 파일명.sql

검색