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>


์œ„์—์„œ 4๋ฒˆ์งธ์ค„ ์ •๊ทœ์‹์—๋Š” ์ฝ”๋“œ์ด๊ทธ๋‚˜์ดํ„ฐ url ํŒจํ„ด์ด ์•„๋‹Œ ์ผ๋ฐ˜ 

url ํƒ์ƒ‰ ํŒจํ„ด /includes ๋˜๋А /images ๋กœ ์ ‘๊ทผ์ด ๊ฐ€๋Šฅํ•˜๊ฒŒ ํ•ด์ฃผ๋‹ค. 

Rewrite๋ฅผ ์ œ์™ธํ•ด์•ผํ•  ํด๋”๋ฅผ ์ถ”๊ฐ€ํ•œ๋‹ค.

728x90
LIST