2008.12.12 22:31
1. a2enmod 명령어로 rewrite 모듈을 활성화 한다.
localhost:/etc# a2enmod rewrite
Module rewrite installed; run /etc/init.d/apache2 force-reload to enable.
a2enmod 를 실행 할 경우는 아래와 같이 /etc/apache2/mods-available/rewrite.load 파일이 /etc/apache2/mods-enabled/ 디렉토리로 링크가 생성된다.
localhost:/etc/apache2/mods-enabled# ls -l /etc/apache2/mods-enabled/rewrite.load
lrwxrwxrwx 1 root root 30 Dec 12 12:02 /etc/apache2/mods-enabled/rewrite.load -> ../mods-available/rewrite.load
a2enmod 명령을 사용하지 않고 수동으로 링크를 생성해도 된다.
2. /etc/apache2/apache2.conf 파일에 아래의 내용을 추가한다.
<IfModule mod_rewrite.c>
RewriteEngine On
</IfModule>
3. apache2.conf 파일의 <Directory> </Directory> 설정부분이나, 가상호스트 설정부분의 <Directory> </Directory> 설정 부분에서AllowOverride None 부분을 AllowOverride all로 수정한다.
<Directory /home/jook/public_html/>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
</Directory>
4. apache 데몬 restart
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
23 | php.ini 옵션 중 short_open_tag | jook | 2009.02.12 | 28371 |
22 | Debian에서 apm 설치할때의 패키지 목록 | jook | 2008.12.27 | 21179 |
» | Debian 에서 mod_rewrite 활성화 하기 | jook | 2008.12.12 | 20811 |
20 | ModSecurity 설치 해보기 | sylee | 2008.09.11 | 38946 |
19 | 보안을 위한 php.ini 설정 | HOSTWAY | 2008.07.31 | 27389 |
18 | 보안 서버 구축 - TOMCAT | 호스트웨이 | 2008.07.08 | 28546 |
17 | 아파치와 tomcat 연동 | 호스트웨이 | 2008.07.01 | 26730 |
16 | 웹 계정 추가 스크립트 | jook | 2008.07.01 | 28237 |
15 | 홈페이지 포워딩 하기 | jook | 2008.05.21 | 31772 |
14 | 웹접속 속도가 느려 졌을때 점검 해보기 | sylee | 2008.05.20 | 61951 |
13 | 아파치 가상 호스트 설정 해보기 | sylee | 2008.05.20 | 26821 |
12 | APM 설치 | 호스트웨이 | 2008.05.19 | 24801 |
11 | apache + resin 연동하여 설치하기 | 호스트웨이 | 2008.05.19 | 34033 |
10 | http://도메인/~계정으로 접근하기 | sylee | 2008.05.15 | 24092 |
9 | 업로드 디렉토리의 .php파일을 text처럼 인식하기 | sylee | 2008.05.15 | 25163 |
8 | 아파치 에러 코드 | sylee | 2008.05.15 | 32017 |
7 | ab 사용방법 | sylee | 2008.05.15 | 29908 |
6 | apache2.x - 보안서버 구축하기 | sylee | 2008.05.15 | 24038 |
5 | apache1.3 + mod_ssl - 보안서버 구축하기 | sylee | 2008.05.15 | 21096 |
4 | 아파치 환경설정 파일분석 1번째 | sylee | 2008.05.14 | 22417 |