.htaccess is a web server directive file populalrly used in Apache Web Server in Linux / Unix environment. . htaccess 지시문은 웹 서버에 사용되는 아파치 웹 서버에 파일을 populalrly 리눅스 / 유닉스 환경을합니다. In windows environment there is a simple way to enable and use .htaccess. 윈도우즈 환경에서하고 사용하는가하는 간단한 방법을 사용합니다. htaccess합니다. Additionally it allows you to create nice permalinks for software like WordPress or phpBB. 또한 permalinks위한 좋은 소프트웨어를 만들 수있습니다 wordpress 또는 phpbb처럼합니다.

To use .htaccess you need to enable mod_rewrite. 을 사용합니다. htaccess mod_rewrite을 활성화해야합니다. Even with that I didn’t have much success when I separately installed apache web server and php. 이별로 없었의 성공에도 불구하고 그 때 나는 아파치 웹 서버를 별도로 설치 및 php합니다. However if you install XAMPP it is a piece of cake. 그러나 부전승를 설치하는 경우는 식은 죽 먹기.

XAMPP automatically installs Apache web server, MySQL database, PHP and a lot of other goodies. 부전승가 자동으로 설치 아파치 웹 서버, mysql 데이터베이스, php 그리고 많은 다른 쓸만한합니다. It does not however come with mod_rewrite enabled. 그러나 mod_rewrite 활성화와 함께하지 않습니다. Let us assume you installed XAMPP in %XAMPP% directory. 부전승 보자 % 부전승 % 디렉터리를 설치한 추측합니다. Then you should open %XAMPP%\apache\conf\httpd.conf in notepad and search for mod_rewrite. 그렇다면가 열립니다 % 부전승 % \ 아파치 \ 구성 \ httpd.conf 메모장 및 검색을 mod_rewrite합니다. You will find a line like: 당신 같은 줄을 발견할 것이다 :
#LoadModule rewrite_module modules/mod_rewrite.so # / LoadModule rewrite_module 모듈 / mod_rewrite.so
Remove the # from the beginning. 을 제거합니다 #부터 시작합니다. It will now look: 이 자 :
LoadModule rewrite_module modules/mod_rewrite.so / LoadModule rewrite_module 모듈 / mod_rewrite.so

Restart the Apache web server through XAMPP control panel. 부전승 제어판을 통해 아파치 웹 서버를 다시 시작합니다. You are done! 당신이 끝났어!