xampp의 아파치 서버를 stop
아파치의 설정화일 수정
xampp\apache\conf\httpd.conf
의
LoadModule rewrite_module modules/mod_rewrite.so
의 주석을 제거하여 사용할 수 있게 한다.
config화일 수정
xampp\htdocs\todo\application\config
config.php화일의
#$config['index_page'] = 'index.php';
$config['index_page'] = '';
설정화일 만들기
xampp\htdocs\todo\.htaccess
화일을 만들고
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond $1 !^(index\.php|images|captcha|include)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /todo/index.php/$1 [L]
</IfModule>
댓글 없음:
댓글 쓰기