본문으로 바로가기

index url 줄이기 및 .htaccess 파일 생성 방법

category Backend/PHP 2019. 6. 20. 15:07
반응형

localhost 위치에 .htaccess 파일 생성

(localhost 위치는 application과 system 폴더와 같은 뎁스의 위치)


1
2
3
4
5
6
7
8
9
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond $1 !^(index\.php|images|captcha|data|include|uploads|robots\.txt)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>


config.php 파일에서 index_page 설정값 수정

/*-------------------------------------------------------------------------
 | (수정) index.php 숨기기
 |-------------------------------------------------------------------------
 | $config['index_page'] = 'index.php';
 -------------------------------------------------------------------------*/
$config['index_page'] = '';



이후 URL은 localhost/클래스이름/메서드이름 혹은

localhost/폴더이름/클래스이름/메서드이름


반응형