반응형
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/폴더이름/클래스이름/메서드이름
반응형
'Backend > PHP' 카테고리의 다른 글
정규식 표현 (0) | 2019.06.23 |
---|---|
Ajax + JSON (0) | 2019.06.20 |
inc 파일 참조와 css 및 js 파일 참조 (0) | 2019.06.20 |
XAMPP MySQL 실행 시 Port 3306 사용 중일 때 (1) | 2019.05.05 |
Apache 포트 에러 중 vmware에서 443 포트 실행 중일 때 (0) | 2019.05.05 |