2

私は CI を初めて使用し、書き換えルールについてあまり知りません。URL から index.php を削除できるようにする、stackoverflow の投稿から htaccess ルールを見つけることができました。ht アクセス ルールは次のとおりです。

<IfModule mod_rewrite.c>
 RewriteEngine On
 RewriteBase /siebeluigen/

 #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
 #Submitted by: Fabdrol
 #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.
 # Submitted by: ElliotHaughin

 ErrorDocument 404 /index.php
</IfModule>

ただし、コントローラーをコントローラー内のサブフォルダーに直接移動すると、これは機能しません。例えば

アプリケーションコントローラーを次のパスに配置した場合

application/controllers/application.php

次に、URLからアクセスできます

http://localhost/siebeluigen/application

しかし、私のディレクトリ構造が

application/controllers/app/application.php

次に、次のURLでエラーが発生します

http://localhost/siebeluigen/app/application

しかし、それはこのように機能します

http://localhost/siebeluigen/index.php/app/application

したがって、htaccess には、それを機能させるために変更できるはずの何かがあると確信しています。

助けてください!!!

アップデート

私のhtaccessファイルは、ルートではなくアプリケーションフォルダーにありました。index.php が配置されているフォルダにファイルを移動すると、問題は解決しました。私は働いている答えをマークしました。ありがとう...

4

2 に答える 2

5

これは、すべてのプロジェクトで使用する htaccess ファイルです。

Options -Indexes
Options +FollowSymLinks

# Set the default file for indexes
DirectoryIndex index.php

<IfModule mod_rewrite.c>

    # activate URL rewriting
    RewriteEngine on

    # do not rewrite links to the documentation, assets and public files
    RewriteCond $1 !^(images|assets|uploads|captcha)

    # do not rewrite for php files in the document root, robots.txt or the maintenance page
    RewriteCond $1 !^([^\..]+\.php|robots\.txt)

    # but rewrite everything else
    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>  

次に、config.phpファイル内で確認してください

  $config['index_page'] = '';

編集: 誰かをあなたのアプリケーション フォルダーに向けることは決してありません - あなたは常に彼らをあなたの index.php に向けます - すべてが Index.php を通過します - そしてそれは必要な場所への再ルーティングを行います.

于 2012-05-03T05:34:33.600 に答える
2

これは、通常、application.php にリダイレクトすることを意味する条件です。

RewriteCond %{REQUEST_URI} ^application.* 

app/application はこの条件に一致しません。これを次のように変更してみてください。

RewriteCond %{REQUEST_URI} ^app/application.* 
于 2012-05-01T19:53:16.437 に答える