2015-09-14 86 views
1

我使用下面的代碼得到current_url(),但找到www.xxxx.com/index.php/home/xxxx。致電current_url()時,跳過index.php。它存儲www.xxxx.com/home/xxxx。 這真的是正常的行爲? 如果我需要包括index.php,該怎麼辦?Codeigniter current_url()跳過index.php

+0

接受的答案.... :) –

回答

3

試試這個,

打開config.php文件,並做以下內容替換

$config['index_page'] = ""

$config['index_page'] = "index.php"

+0

解決。謝謝 –

+0

@WingHingRaymondChiu接受答案 –

1

可以做2個提示

  1. 的config.php

    $config['index_page'] = "index.php" 
    
  2. 的config.php

    $config['base_url'] = 'www.example.com/index.php/';