1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /* |-------------------------------------------------------------------------- | Base Site URL |-------------------------------------------------------------------------- | | URL to your CodeIgniter root. Typically this will be your base URL, | WITH a trailing slash: | | | If this is not set then CodeIgniter will guess the protocol, domain and | path to your installation. | */ $config[ 'base_url' ] = '' ; ← ここにベースURLを記載。 |
1 2 3 4 5 6 7 8 9 10 11 | class Hello extends CI_Controller { public function __construct() { parent::__construct(); // これ以降にコードを書いていく } function index() { echo 'これはテストです。' ; } } |