[Codeiginter] 首頁可開,其他項目 404 error
原因:
http://localhost 可開,但將檔案移至 http://localhost/new 則只能開啟首頁,其他項目 404 error
主要是 .htaccess 檔路徑設定問題,改為以下紅字可解決
RewriteBase /new
RewriteRule ^(.*)$ /new/index.php?/$1 [L]
http://localhost 可開,但將檔案移至 http://localhost/new 則只能開啟首頁,其他項目 404 error
主要是 .htaccess 檔路徑設定問題,改為以下紅字可解決
RewriteBase /new
RewriteRule ^(.*)$ /new/index.php?/$1 [L]
Comments
Post a Comment