PHP
์ฝ๋์ด๊ทธ๋์ดํฐ Codeigniter index.php ์์ ๊ธฐ.
๐ฉท ์ ๐งก
2013. 6. 5. 23:52
728x90
SMALL
1. ์ฝ๋์ด๊ทธ๋์ดํฐ ์ค์นํด๋์ .htaccess ๋ฅผ ๋ง๋ ๋ค.
ํ์ผ๋ด์ฉ์ ์๋์ ๊ฐ๋ค.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond $1 !^(index\.php|images|asset)
RewriteCond %[REQUEST_FILENAME] !-f
RewriteCond %[REQUEST_FILENAME] !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
[์ถ์ฒ] [CodeIgniter] index.php ์ ๊ฑฐํ๊ธฐ|์์ฑ์ ๋ํ ๋ฆฌ
์์์ 4๋ฒ์งธ์ค ์ ๊ท์์๋ ์ฝ๋์ด๊ทธ๋์ดํฐ url ํจํด์ด ์๋ ์ผ๋ฐ
url ํ์ ํจํด /includes ๋๋ /images ๋ก ์ ๊ทผ์ด ๊ฐ๋ฅํ๊ฒ ํด์ฃผ๋ค.
Rewrite๋ฅผ ์ ์ธํด์ผํ ํด๋๋ฅผ ์ถ๊ฐํ๋ค.
728x90
LIST