http://tzangms.com/programming/977/
因為 http://www.codeigniter.org.tw/user_guide/installation/troubleshooting.html
伺服器可能不支援 PATH_INFO 變數
因為把 config.php
$config['index_page'] = 'index.php';
改為
$config['index_page'] = 'index.php?';
使用 helper - url 的 redirect 會有問題,所以讓url-rewrite去解
把 rewrite改掉如下
原本的 rewrite
RewriteRule ^(.*)$ index.php/$1 [L]改成
RewriteRule ^(.*)$ index.php?/$1 [L]
沒有留言:
張貼留言