2012年9月4日 星期二

CodeIgniter URL-rewrite

http://www.codeigniter.org.tw/user_guide/general/urls.html
以下是將除了像是 index.php、captcha(資料夾)、images、admin、swf檔(使用.*為任意檔名)、css檔、js檔 的全部 HTTP request 都會被當成是 request index.php 檔案。 ( ex. pond.php => index.php/pond.php )
  
RewriteEngine on
RewriteBase /
RewriteCond $1 !^(index\.php|captcha|images|admin|.*\.swf|.*\.css|.*\.js|.*\.xml|.*\.jpg|$)
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

沒有留言:

張貼留言