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
- SVN
- RabbitMQ
- Postfix
- 천단위
- MySQL
- 확장자
- jQuery
- smarty
- centos
- mariadb
- TextBox
- ubuntu
- i18n
- TPL
- yum
- docker
- Selectbox
- Python
- 일괄변경
- random
- install
- Eclipse
- 문자열자르기
- replace
- JavaScript
- Oracle
- 부모창
- 한글 깨짐
- php
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