htaccess

.htaccess Tips

Restrict Access to WP Admin directory by IP Address If you are running a single user blog site, there is no reason to allow others to access WordPress administration panel. You can protect your WP admin from unauthorized access by listing your static IP address in the .htaccess. Here’s the trick order deny,allow allow from a.b.c.d # This is your static IP deny from all Disable Hotlinking Sometimes another site may directly link images from your site. It saves hard disk space by not having to store the images. But your site ends up serving the requests for them, thus using up your precious bandwidth. This is known as ‘hotlinking’. […]

Posted in htaccess | Comments Off on .htaccess Tips

.htaccess (hypertext access)

  어 떤 웹 주소를 입력하였을 때, 그 웹 주소에서 정보를 얻은 후 다른 사이트로 연결되는 것을 보신 적이 있을 겁니다. 이것은 웹 프로그래밍을 사용한 것일 수도 있지만 대부분 아파치의 Rewrite와 같은 모듈을 이용한 것입니다. 이 모듈을 이용하면 조건에 맞게 URL을 변경할 수 있습니다. 여기서는 아파치의 .htaccess 파일의 사용법에 대해서 소개하겠습니다. .htaccess란? .htaccess (hypertext access)는 Apache 웹 서버의 디렉토리 레벨을 설정하는 기본 파일입니다. .htaccess는 한 특정 디렉토리에 위치하며, 모든 하위 디렉토리를 포함한 해당 디렉토리에 영향을 미칩니다. 이 파일이 위치한 특정 폴더에 사용자가 정의한 Request 기능을 적용합니다. 파일 이름은 .(dot)으로 시작하기 때문에 유닉스 계열의 운영체제에서는 숨김 파일로 저장됩니다. .htaccess의 파일명을 다르게 사용하고 싶다면, AccessFileName 지시어를 사용하여 변경할 수있습니다. 예를 들어, .config […]

Posted in htaccess | Comments Off on .htaccess (hypertext access)