私はCodeigniterでプロジェクトを作成しました。このプロジェクトは、localhostのWAMPをに取り組んでいるが、私はオンラインサーバがlocalhostの作業のURLにcodeigniterページが見つかりません
http://localhost/newjob/index.php/home
が、アップロード後に、サーバー上でこのURLは
http://example.com/index.php/home
と
を働いていないのが動作していないアップロードしました
http://example.com/
コントローラ
<?php class Home extends Controller {
public function index() {
echo "home page";
} } ?>
コンフィグ
$config['base_url'] = 'http://example.com/';
あなたの '.htaccess'ファイル? –
codeIgniterのコントローラやモデルの末尾に '?>'は必要ありません。すべてのファイル名に大文字の大文字が含まれていることを確認してください。例http://stackoverflow.com/questions/34025305/ip-address-is-showing-in-form -action-with-codeigniter-http-1-codeigniter-in/34031347#34031347 – user4419336
'class Home extends Controller'が間違っています。 'class Home extends CI_Controller'を使用してください。 – Tpojka