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 |
Tags
- TPL
- Eclipse
- 일괄변경
- 확장자
- centos
- TextBox
- replace
- Python
- smarty
- docker
- Selectbox
- php
- 문자열자르기
- MySQL
- random
- 부모창
- mariadb
- jQuery
- Postfix
- JavaScript
- Oracle
- 천단위
- yum
- 한글 깨짐
- RabbitMQ
- install
- ubuntu
- i18n
- SVN
Archives
- Today
- Total
목록.htaccess (1)
wilson's story
.htaccess 설정
.htaccess 에 rule 설정 설정하려는 도메인의 DocumentRoot 에 .htaccess 파일을 만들고 rule 을 설정한다. (위의 예에서는 /user/yourdomain.co.kr/.htaccess 가 되겠다) 흔히 사용하는 rule 하나를 예를 들면.. RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} /demo/([a-z0-9_-]+)$ RewriteRule demo/(.*) /demo/index.php?key=$1 [R,L]yourdomain.co.kr/demo/keyname 형식으로 접속하면, yourdomain.co.kr/demo/index.php?key=keyname 으로 rewrite 해주는 rule 이다. 보통 Proces..
Linux
2007. 12. 14. 15:44