0

私はこれを達成するために何時間も努力してきました!

私のcodeigniterアプリケーションはwebrootのサブフォルダーにあり、サブフォルダーは「Tat」と呼ばれます。

codeigniterフォルダー(アプリケーションフォルダーとシステムフォルダーの隣)にある次の.htaccessファイルを使用しています。

<IfModule mod_rewrite.c>

    RewriteEngine On
    RewriteBase /

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Rename 'application' to your applications folder name.
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    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>

私がアクセスした場合:127.0.0.1 / Tat /-CodeIgniterアプリにアクセスします、それは良いことです。

次のサイトにアクセスした場合:127.0.0.1 / Tat / index.php / register-CIアプリの登録ページに移動します(index.phpは必要ありません!)

私がアクセスした場合:127.0.0.1 / Tat / register-サーバー全体のWebルートに移動します!これで登録ページに移動したいです!

どうすればいいのかわからない!

言及する価値があります:*私のベースURLが設定されています:$ config ['base_url'] ='http://127.0.0.1:5678/Tat'; *インデックスページが設定されています:$ config ['index_page'] =''; *私はサーバーを完全に制御しています。これは、UbuntuPrecise64でApache2を実行している開発サーバーです。

誰かが私を正しい方向に向けたり、私の.htaccessを修正したり、apache設定を変更する方法を教えてくれたら、それは素晴らしいことです!

ありがとう。

4

2 に答える 2

1

サイトはサブフォルダーにあるため、4行目のようにRewriteBaseを設定します。

RewriteBase /Tat
于 2012-07-15T21:56:48.557 に答える
0

私はついに答えを見つけました!サーバーが正しく構成されていませんでした。mod_rewrite が有効になっていませんでした。

Ubuntu ユーザーは、コマンド ラインでこれを起動して有効にします: sudo a2enmod rewrite

次に、Apache を再起動します。

次の .htaccess を使用しています。

<IfModule mod_rewrite.c>

    RewriteEngine On
    RewriteBase /

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Rename 'application' to your applications folder name.
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    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>
于 2012-07-16T07:05:55.197 に答える