Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 확장자
- replace
- install
- centos
- TPL
- 한글 깨짐
- smarty
- Eclipse
- mariadb
- RabbitMQ
- ubuntu
- random
- SVN
- jQuery
- i18n
- Oracle
- Python
- MySQL
- Selectbox
- JavaScript
- TextBox
- php
- docker
- yum
- Postfix
- 천단위
- 부모창
- 일괄변경
- 문자열자르기
Archives
- Today
- Total
wilson's story
.htaccess 설정 본문
반응형
.htaccess 에 rule 설정
설정하려는 도메인의 DocumentRoot 에 .htaccess 파일을 만들고 rule 을 설정한다.
(위의 예에서는 /user/yourdomain.co.kr/.htaccess 가 되겠다)
흔히 사용하는 rule 하나를 예를 들면..
yourdomain.co.kr/demo/index.php?key=keyname 으로 rewrite 해주는 rule 이다.
보통 ProcessFile?key=aaa&key2=bbb 처럼 URL 이 복잡해지는 것을 줄이는 용도로 사용한다.
.htaccess 를 사용하기 위해서는 위의 Virtual Host 설정탭 사이에 다음처럼 추가한다.
http://httpd.apache.org/docs/2.0/ko/howto/htaccess.html
http://httpd.apache.org/docs/2.0/misc/rewriteguide.html
설정하려는 도메인의 DocumentRoot 에 .htaccess 파일을 만들고 rule 을 설정한다.
(위의 예에서는 /user/yourdomain.co.kr/.htaccess 가 되겠다)
흔히 사용하는 rule 하나를 예를 들면..
RewriteEngine Onyourdomain.co.kr/demo/keyname 형식으로 접속하면,
RewriteBase /
RewriteCond %{REQUEST_URI} /demo/([a-z0-9_-]+)$
RewriteRule demo/(.*) /demo/index.php?key=$1 [R,L]
yourdomain.co.kr/demo/index.php?key=keyname 으로 rewrite 해주는 rule 이다.
보통 ProcessFile?key=aaa&key2=bbb 처럼 URL 이 복잡해지는 것을 줄이는 용도로 사용한다.
.htaccess 를 사용하기 위해서는 위의 Virtual Host 설정탭 사이에 다음처럼 추가한다.
<Directory /user/yourdomain.co.kr/>
AllowOverride all
</Directory>
http://httpd.apache.org/docs/2.0/ko/howto/htaccess.html
http://httpd.apache.org/docs/2.0/misc/rewriteguide.html
반응형