2017-07-11 19 views
0

こんにちは私はlkn.ccomsys.netでホストされているWebサイトを持っており、codeigniterフレームワークを使用して書かれています。しかし、私のインデックスページだけが開いているように見えますが、インナーページはまったく開きません。以下は私の.htaccessファイルcodeigniterサブドメインリダイレクトの問題

<IfModule mod_rewrite.c> 
    RewriteEngine On 
    # !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading 
    # slashes. 
    # If your page resides at 
    # http://www.example.com/mypage/test1 
    # then use 
    # RewriteBase /mypage/test1/ 
    RewriteBase /lkn 
    RewriteCond $1 !^(index\.php|resources|robots\.txt) 
    RewriteCond %{REQUEST_FILENAME} !-f 
    RewriteCond %{REQUEST_FILENAME} !-d 
    RewriteRule ^(.*)$ index.php?/$1 [L] 
</IfModule> 

<IfModule !mod_rewrite.c> 
    # If we don't have mod_rewrite installed, all 404's 
    # can be sent to index.php, and everything works as normal. 


    ErrorDocument 404 /index.php 
</IfModule> 

である私は、追加書き換えルール+にindex.phpを前に/追加することにより、スタックオーバーフロー上の指定されたすべての可能な解決策を確認しています。同じ+の前にlkn.ccomsys.netに私の書き換えベースを作る。しかし、これらの解決策のどれもうまくいかないようです。私は同じことについていくつかの助けをしてください。 ありがとうございます。

答えて

0

使用このコード

+0

@Rahulがこの作業ですか? –

+0

まだ動作していません。ホームページだけが開いているようです。 – Rahul

+0

'application/config \ config.php'の' $ config ['index_page'] = 'index.php'; '' $ config ['index_page'] = ''; 'に変更しました –

関連する問題